Ask Your Question

Raymund_Ocaba's profile - activity

2014-03-23 05:07:23 -0600 commented question How to cast Mat to IplImage in JAVA?

yes in javacv

2014-03-23 04:38:17 -0600 asked a question How to cast Mat to IplImage in JAVA?

Can anyone help me this one?

2014-03-19 12:52:39 -0600 commented question How to create CSV file in windows (face recognition) ?

me again what is bla.py?

2014-03-19 10:45:27 -0600 commented question How to create CSV file in windows (face recognition) ?

thanks... really thank you.... thanks

2014-03-19 10:40:37 -0600 commented question How to create CSV file in windows (face recognition) ?

great it works now... does this actually create a file? or just show me a path?

2014-03-19 10:07:40 -0600 commented question How to create CSV file in windows (face recognition) ?

can you look at my code and if there is something wrong?

import sys import os.path

if __name__ == "__main__":

if len(sys.argv) != 2:
    print "usage: create_csv <base_path>"
    sys.exit(1)

BASE_PATH=sys.argv[1]
SEPARATOR=";"

label = 0
for dirname, dirnames, filenames in os.walk(BASE_PATH):
    for subdirname in dirnames:
        subject_path = os.path.join(dirname, subdirname)
        for filename in os.listdir(subject_path):
            abs_path = "%s/%s" % (subject_path, filename)
            print "%s%s%d" % (abs_path, SEPARATOR, label)
        label = label + 1
2014-03-19 09:23:01 -0600 commented question How to create CSV file in windows (face recognition) ?

It does a SyntaxError: invalid syntax with a line before like this "python create_csv.py c:/..." and and arrow pointing to v in csv part of create_csv.py

2014-03-19 09:09:28 -0600 commented question How to create CSV file in windows (face recognition) ?

OK will try something

2014-03-19 08:51:41 -0600 commented question How to create CSV file in windows (face recognition) ?

In cmdline i did type python... do i need to type Python for the cmdline like " python create_csv.py c:/..." is this wrong?

2014-03-19 08:30:54 -0600 commented question How to create CSV file in windows (face recognition) ?

i did install python 3.3 and still won't recognized it

2014-03-19 08:02:39 -0600 commented question How to create CSV file in windows (face recognition) ?

How do you do this in the cmdline? i tried some thing like " python create_csv.py c;/location/att_faces " but it just gives me ' python ' is not recognized as an internal or external command?

2014-02-26 22:33:23 -0600 commented question How the lbpcascade_frontalface.xml work?

Can this be applied also on mobile phone app?

2014-02-26 07:02:12 -0600 commented question How the lbpcascade_frontalface.xml work?

I'll try doing that

2014-02-26 05:42:56 -0600 asked a question How the lbpcascade_frontalface.xml work?

I'am trying to understand how the lbpcascade_frontalface.xml work so that I can know what of face i can and can't use..... So far i didn't understand anything, At first I though with 2 weeks of trying of understanding the code I might some what understand some of it.

Any one pls help.