-
Notifications
You must be signed in to change notification settings - Fork 16
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
Implementation of Single Image Augmentation Example #128
Conversation
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.
Pls add more example files.
.build(); | ||
|
||
BufferedImage augmentedImage=augmentationSequence.applyTo(bufferedImage); | ||
System.out.println("<---- Image After Augmentation ----> "); |
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.
remove
|
||
BufferedImage augmentedImage=augmentationSequence.applyTo(bufferedImage); | ||
System.out.println("<---- Image After Augmentation ----> "); | ||
System.out.println(augmentedImage); |
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.
remove
BufferedImage augmentedImage=augmentationSequence.applyTo(bufferedImage); | ||
System.out.println("<---- Image After Augmentation ----> "); | ||
System.out.println(augmentedImage); | ||
System.out.println("<---- Ending Augmentation ----> "); |
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.
remove
|
||
public static void main(String[] args) throws IOException { | ||
// Get Buffered Image from image file | ||
System.out.println("<---- Starting Augmentation ----> "); |
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.
remove all system prints
3a986c4
to
208014b
Compare
+ "images" | ||
+ File.separator | ||
+ "image.jpeg"); | ||
private static final String IMAGE_PATH = "images/cyborg.png"; |
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.
Use Platform independent Path seperator instead of "/"
No description provided.