22 lines
665 B
Python
22 lines
665 B
Python
def main():
|
|
import Augmentor
|
|
p = [Augmentor.Pipeline("Images/TrainingImages/glass"),
|
|
Augmentor.Pipeline("Images/TrainingImages/metal"),
|
|
Augmentor.Pipeline("Images/TrainingImages/paper"),
|
|
Augmentor.Pipeline("Images/TrainingImages/plastic")]
|
|
for i in range(len(p)):
|
|
# Setting rotate values
|
|
p[i].rotate(probability=0.7, max_left_rotation=10, max_right_rotation=10)
|
|
|
|
# Setting zoom values
|
|
p[i].zoom(probability=0.5, min_factor=1.1, max_factor=1.5)
|
|
|
|
# Size of training sample
|
|
p[i].sample(1000)
|
|
|
|
p[i].process()
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|