Skip to content

Commit

Permalink
- Fixed bug in association visualization application
Browse files Browse the repository at this point in the history
  • Loading branch information
lessthanoptimal committed Sep 23, 2014
1 parent 46da9c7 commit e673767
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
12 changes: 6 additions & 6 deletions change.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ Date : 2014/9/22
Version : Alpha 0.18

- Renamed ImageSegmentation to ImageSuperpixels
* Added a unit test which ensures connectivity requirement is meet
* Fixed issue with SLIC where it did not set its ConnectRule
* Added a unit test which ensures connectivity requirement is meet
* Fixed issue with SLIC where it did not set its ConnectRule
- Renamed ExampleStructureFromMotion to ExampleMultiviewSceneReconstruction
- Processing
* Gradle copies over processing JavaDoc
* Fixed SimpleTrackerPoints.spawn() which did not update the tracks before
* Added more comments to examples
* Gradle copies over processing JavaDoc
* Fixed SimpleTrackerPoints.spawn() which did not update the tracks before
* Added more comments to examples
- Removed Caliper dependency
* Not designed the way I want it to be and recent changes made it less usable
* Not designed the way I want it to be and recent changes made it less usable
- Removed v4l4j support since Webcam Capture is easier and does a better job
- Fixed OpenKinect examples
- ImageDistort now supports a different input and output types
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2011-2013, Peter Abeles. All Rights Reserved.
* Copyright (c) 2011-2014, Peter Abeles. All Rights Reserved.
*
* This file is part of BoofCV (http://boofcv.org).
*
Expand Down Expand Up @@ -33,6 +33,7 @@
import boofcv.alg.filter.derivative.GImageDerivativeOps;
import boofcv.alg.transform.ii.GIntegralImageOps;
import boofcv.core.image.ConvertBufferedImage;
import boofcv.core.image.GConvertImage;
import boofcv.core.image.GeneralizedImageOps;
import boofcv.factory.feature.associate.FactoryAssociation;
import boofcv.factory.feature.describe.FactoryDescribeRegionPoint;
Expand Down Expand Up @@ -135,6 +136,8 @@ public void process(final BufferedImage buffLeft, final BufferedImage buffRight)

ConvertBufferedImage.convertFromMulti(buffLeft, imageLeft, true, imageType);
ConvertBufferedImage.convertFromMulti(buffRight, imageRight, true, imageType);
GConvertImage.average(imageLeft, grayLeft);
GConvertImage.average(imageRight, grayRight);

SwingUtilities.invokeLater(new Runnable() {
public void run() {
Expand Down

0 comments on commit e673767

Please sign in to comment.