Open vrr-data opened 4 years ago
Hi,
That file can be found in the coure's GitHub repository.
On Sat, Sep 26, 2020 at 9:20 PM vrr-data notifications@github.com wrote:
In the final example, Testing our CNN on Actual Real Datathere is a function in Jupyter Notebook - 15. Creating a CNN using TensorFlow 2.0.ipynb, there is a function called "preprocessors" that does not appear to be a function from any of the packages used. In the video the author seems to say that he wrote it. Without this function, the example does not run and generates the following error:
ModuleNotFoundError Traceback (most recent call last) in 1 import numpy as np 2 import cv2 ----> 3 from preprocessors import x_cord_contour, makeSquare, resize_to_pixel 4 5 image = cv2.imread('images/numbers.jpg')
ModuleNotFoundError: No module named 'preprocessors'
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/PacktPublishing/Hands-On-Computer-Vision-with-OpenCV-4-Keras-and-TensorFlow-2/issues/1, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADLZD2GEQM23TZF5SKWIRBLSH2HNDANCNFSM4R3HQ4CQ .
-- Rajeev Ratan
Data Scientist & Computer Vision Consultant [MSc Artificial Intelligence (University of Edinburgh, 2015)] [BSc. Electrical & Computer Engineering (Hons), UWI] [UK : +44 0759-183-7864 | Trinidad Mobile: +1-868-489-5312 ] [Web: www.rajeevratan.com | LinkedIn: http://uk.linkedin.com/in/rajeevratan ] [Alternative Email: rajeevratan84@gmail.com] [UK Address: London, England | Trinidad Address: Port of Spain, Trinidad ]
Hi Raveej could you provide the link for the missing module? (preprocessors.py).
I cannot find it anywhere. I've reviewed all the support documentation on O´Reilly and Pack and there is no reference to the module whatsoever.
Thanks in advance!
Hi,
This is the link to the preprocessors.py file :)
On Wed, Oct 14, 2020 at 5:22 PM apulache notifications@github.com wrote:
Hi Raveej could you provide the link for the missing module? (preprocessors.py).
I cannot find it anywhere. I've review all the support documentation on O´Reilly and Pack and there is no reference to the module whatsoever.
Thanks in advance!
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/PacktPublishing/Hands-On-Computer-Vision-with-OpenCV-4-Keras-and-TensorFlow-2/issues/1#issuecomment-708667091, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADLZD2D3ONE2LLHVCDZIEALSKYI7PANCNFSM4R3HQ4CQ .
-- Rajeev Ratan
Data Scientist & Computer Vision Consultant [MSc Artificial Intelligence (University of Edinburgh, 2015)] [BSc. Electrical & Computer Engineering (Hons), UWI] [UK : +44 0759-183-7864 | Trinidad Mobile: +1-868-489-5312 ] [Web: www.rajeevratan.com | LinkedIn: http://uk.linkedin.com/in/rajeevratan ] [Alternative Email: rajeevratan84@gmail.com] [UK Address: London, England | Trinidad Address: Port of Spain, Trinidad ]
In the final example, Testing our CNN on Actual Real Data, there is a function in Jupyter Notebook - 15. Creating a CNN using TensorFlow 2.0.ipynb, there is a function called "preprocessors" that does not appear to be a function from any of the packages used. In the video the author seems to say that he wrote it. Without this function, the example does not run and generates the following error:
ModuleNotFoundError Traceback (most recent call last)