HoughCircles circles=new HoughCircles(15, 50);
circles.analyseImage(grayImage);
List<HoughCircles.WeightedCircle> best = circles.getBest(1);
I got this exception
Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 10
at org.openimaj.image.analysis.algorithm.HoughCircles.<init>(HoughCircles.java:116)
Is this error related with my code or is it bug ?
Last edit: Anonymous 2013-05-11
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
What version of OpenIMAJ? There was a bug in the 1.1 (and earlier) versions with the HoughCircles class, but it's been fixed in 1.1.1-SNAPSHOT for a few weeks.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
Anonymous
-
2013-05-12
<version>1.1</version>
Now i add it is as <version>1.1.1-SNAPSHOT</version>,
Now working well,
thanks.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I used those lines in my code
HoughCircles circles=new HoughCircles(15, 50);
circles.analyseImage(grayImage);
List<HoughCircles.WeightedCircle> best = circles.getBest(1);
I got this exception
Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 10
at org.openimaj.image.analysis.algorithm.HoughCircles.<init>(HoughCircles.java:116)
Is this error related with my code or is it bug ?
Last edit: Anonymous 2013-05-11
What version of OpenIMAJ? There was a bug in the 1.1 (and earlier) versions with the HoughCircles class, but it's been fixed in 1.1.1-SNAPSHOT for a few weeks.
<version>1.1</version>
Now i add it is as <version>1.1.1-SNAPSHOT</version>,
Now working well,
thanks.