Posts by Felipe Ricardo dos Santos • 46 points
2 posts
-
2
votes1
answer229
viewsQ: Python Multidimensional Array Problem
Basically my algorithm imports all the photos I have inside a directory (dataset_train), saving these photos in vector X and the name of the folder where it was in vector Y. import os import cv2…
-
0
votes1
answer84
viewsA: String comparison
You can use the function strcmp library string.h. Would look like this: if( strcmp(vet[i].tipo_conta, "Especial") == 0) This function returns 0 if the strings are equal.…