ruby_marks 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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