You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i have download and run project in flash builder 4.6 and xampp but it just show
"Received list of 65 images and theirs clasificators." when i click load
training set, can u help me?, thank you so much :)
Original issue reported on code.google.com by [email protected] on 3 Jan 2012 at 3:07
The text was updated successfully, but these errors were encountered:
Had to fiddle with this problem, too.
The source of the problem is: On my Mac, it tries to get the .DS_Store file
(automatically created by the system).
Then the PHP tries to fetch it without being careful to check if it is an image
or not, then it crashes.
Solved it by changing line 22 on getTrainingSetData.php from (it adds a check
of extension):
if ( is_file($path_to_image_dir.'/'.$file) )
to
if ( is_file($path_to_image_dir.'/'.$file) &&
exif_imagetype($path_to_image_dir.'/'.$file) == IMAGETYPE_JPEG )
Just be careful since you will need to use JPEG files, it will ignore other
filetypes.
Original issue reported on code.google.com by
[email protected]
on 3 Jan 2012 at 3:07The text was updated successfully, but these errors were encountered: