You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Calculates the first row starting from the top with at least one non black pixel.
32
+
/// </summary>
33
+
/// <param name="image">The image to check.</param>
34
+
/// <param name="threshold">The threshold of "blackness" used to detect black bars. (e. g. Threshold 5 will consider a pixel of color [5,5,5] as black.)</param>
35
+
/// <returns>The row number of the first row with at least one non-black pixel.</returns>
/// Calculates the last row starting from the top with at least one non black pixel.
54
+
/// </summary>
55
+
/// <param name="image">The image to check.</param>
56
+
/// <param name="threshold">The threshold of "blackness" used to detect black bars. (e. g. Threshold 5 will consider a pixel of color [5,5,5] as black.)</param>
57
+
/// <returns>The row number of the last row with at least one non-black pixel.</returns>
/// Calculates the first column starting from the left with at least one non black pixel.
76
+
/// </summary>
77
+
/// <param name="image">The image to check.</param>
78
+
/// <param name="threshold">The threshold of "blackness" used to detect black bars. (e. g. Threshold 5 will consider a pixel of color [5,5,5] as black.)</param>
79
+
/// <returns>The column number of the first column with at least one non-black pixel.</returns>
/// Calculates the last column starting from the top with at least one non black pixel.
98
+
/// </summary>
99
+
/// <param name="image">The image to check.</param>
100
+
/// <param name="threshold">The threshold of "blackness" used to detect black bars. (e. g. Threshold 5 will consider a pixel of color [5,5,5] as black.)</param>
101
+
/// <returns>The column number of the last column with at least one non-black pixel.</returns>
/// Calculates the first row starting from the top with at least one non black pixel.
145
+
/// </summary>
146
+
/// <param name="image">The image to check.</param>
147
+
/// <param name="threshold">The threshold of "blackness" used to detect black bars. (e. g. Threshold 5 will consider a pixel of color [5,5,5] as black.)</param>
148
+
/// <returns>The row number of the first row with at least one non-black pixel.</returns>
/// Calculates the last row starting from the top with at least one non black pixel.
168
+
/// </summary>
169
+
/// <param name="image">The image to check.</param>
170
+
/// <param name="threshold">The threshold of "blackness" used to detect black bars. (e. g. Threshold 5 will consider a pixel of color [5,5,5] as black.)</param>
171
+
/// <returns>The row number of the last row with at least one non-black pixel.</returns>
/// Calculates the first column starting from the left with at least one non black pixel.
191
+
/// </summary>
192
+
/// <param name="image">The image to check.</param>
193
+
/// <param name="threshold">The threshold of "blackness" used to detect black bars. (e. g. Threshold 5 will consider a pixel of color [5,5,5] as black.)</param>
194
+
/// <returns>The column number of the first column with at least one non-black pixel.</returns>
/// Calculates the last column starting from the top with at least one non black pixel.
214
+
/// </summary>
215
+
/// <param name="image">The image to check.</param>
216
+
/// <param name="threshold">The threshold of "blackness" used to detect black bars. (e. g. Threshold 5 will consider a pixel of color [5,5,5] as black.)</param>
217
+
/// <returns>The column number of the last column with at least one non-black pixel.</returns>
0 commit comments