-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Detect diseases from close up images of tomatoes #128
Detect diseases from close up images of tomatoes #128
Conversation
I'll review once you implemented the changes we discussed earlier today @mirceatlx |
src/backend/main.py
Outdated
if args.path is None or args.mode is None: | ||
imgs = [Mat.read(file) for file in sorted(glob.glob("pipeline/test/data/mosaicing/farm/D*.JPG"))] | ||
imgs = [Mat.read(file) for file in sorted(glob.glob("pipeline/test/data/disease/*.JPG"))] | ||
path = "pipeline/test/data/mosaicing/farm/D*.JPG" | ||
cloud_config = CloudConfig(bucket_name=output_bucket) | ||
else: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you move this into a test? No need for extensive testing, but we're gonna overwrite main.py
at some point and then it will be difficult to work with disease insights again.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Detect diseases from close up images of tomatoes using transfer learning techniques.
Closes #109