ruby_marks 0.2.3 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/ruby_marks/recognizer.rb +1 -3
- data/lib/ruby_marks/version.rb +1 -1
- metadata +1 -1
@@ -139,9 +139,7 @@ module RubyMarks
|
|
139
139
|
mark_height = RubyMarks::ImageUtils.calc_height(mark[:y1], mark[:y2])
|
140
140
|
|
141
141
|
if mark_width >= group.mark_width_with_down_tolerance &&
|
142
|
-
|
143
|
-
mark_height >= group.mark_height_with_down_tolerance &&
|
144
|
-
mark_height <= group.mark_height_with_up_tolerance
|
142
|
+
mark_height >= group.mark_height_with_down_tolerance
|
145
143
|
|
146
144
|
group.marks.each_pair do |key, marks_array|
|
147
145
|
mark_positions = mark[:y1]-10..mark[:y1]+10
|
data/lib/ruby_marks/version.rb
CHANGED