IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
Todo List
Class boardPerceive
Create complete implementation with track filter.
Member Color.start (self)
Should implement start/stop functionality and capture boolean.
Member Color.stop (self)
Should implement start/stop functionality and capture boolean.
Member D435_Runner.start (self)
Should implement start/stop functionality and capture boolean.
Member D435_Runner.stop (self)
Should implement start/stop functionality and capture boolean.
Class Edge
Need to confirm that works. [2024/10/20 - PAV]
Class fgGaussian

Eventually should be translated to OpenCV style code by repurposing their code to get CUDA and OpenCL implementations for speed purposes. Even their C code is fairly zippy relative to python.

Redo so that inherits from appearance or some kind of fgmodel class.

Member fgGaussian.estimateFromData (self, theData)
Establish if should be row or column.
Member fgGaussian.updateFromData (self, theData, alpha=None)
Establish if should be row or column.
Class inImageRGBD
Should it really be a sub-class of inImage?
Member Matrix.buildFrom_ImageAndMask (theImage, theMask, theParams=CfgMatrix(), show_grid=False)
NOT UPDATED!!!!
Member Matrix.buildFromFile_ImageAndMask (fileName, theParams=None)
NOT UPDATED!!!!
Member Matrix.buildFromFile_Puzzle (fileName, theParams=None)
NOT UPDATED!!!!
Member Matrix.buildFromFiles_ImageAndMask (imFile, maskFile, theParams=None)
NOT UPDATED!!!!
Member Matrix.coord2ind (self, theCoords)
Make sure not impacted by other operations. Right now depends on outer scope to figure that out or to not disturb piece ordering.
Member Matrix.sub2ind (self, theSubs)
Make sure not impacted by other operations. Right now depends on outer scope to figure that out or to not disturb piece ordering.
Member Monitor.predict (self)
Is this proper way to conceive of monitor predict?
Class Piece
When have time, need to integrate into Template or have be generic function available through the Piece package. Piece.getBuilderFromString. or Piece.Template, Piece.Regular, etc. For now leaving until have time to make correction and ensure code + unit tests work.
Member Progress.predict (self)
Is this proper way to conceive of progress monitor predict?
Namespace puzzle.builder.arrangement

May need more work to align with current revisions.

Some of the test scripts may have bad Cfg parameter names.

Namespace puzzle.clusters.byColor
Uses a ParamColorCluster structure rather than a CfgByColor instances.
Namespace puzzle.parser.fromSketch
Not fully developed yet.
Member puzzle::utils::imageProcessing.preprocess_synthetic_puzzle (img, mask=None, areaThresholdLower=1000, areaThresholdUpper=8000, cannyThresh=(20, 80), verbose=False)
Maybe can combine preprocess_real_puzzle and preprocess_synthetic_puzzle together?
Member Regular.setEdgeType (self, direction, etype)
Shouldn't this be a private or protected member function?
Member Replay.start (self)
Should implement start/stop functionality and capture boolean.
Member ReplayColor.start (self)
Should implement start/stop functionality and capture boolean.
Member SIFTCV.compare (self, piece_A, piece_B, tauMatch=None)

Establish whether the registration code should be here or elsewhere. The reason for being here is that it takes advantage of matching computations made to prevent additional computations.

Yet, these are done whether it is a match or not. Better to not bother if not even a match. Going to go with that by rearranging the code [2023/11/03]. Delete note if acceptable.

Member Template.buildFromFullMaskAndImage (theMask, theImage, cLoc=None, rLoc=None, pieceStatus=PieceStatus.MEASURED)
Include option to have cropped mask but full image and use cLoc.
Member Template.buildFromMaskAndImage (theMask, theImage, cLoc=None, rLoc=None, pieceStatus=PieceStatus.MEASURED)
Include option to have cropped mask but full image and use cLoc.