jasorsi13

Results 3 issues of jasorsi13

I was facing segmentation fault core dump as It was writing the images back to disk. This worked. import imageio ###conda install -c conda-forge imageio replace all cv2.imwrite() or scipy.misc.imsave()...

import imageio ###conda install -c conda-forge imageio replace all cv2.imwrite() or scipy.misc.imsave() to imageio.imwrite() This is a mutex issue in new opencv releases. Always use imageio to write images back...

Only after adding the lines the command "`python get_cropped_TigDog.py`" will run. append file get_cropped_TigDog.py: ################################################ ``` if __name__== "__main__": animals = ['horse', 'tiger'] img_folder = './animal_data/' for animal in animals:...