Now, I have a stitching project. I need to find the best stitching seam, but I have no idea of the function below. I have already seen the illustration of OpenCV documentation, I think it’s unclear.
seam_finder = new detail::GraphCutSeamFinder(GraphCutSeamFinderBase::COST_COLOR);
seam_finder->find(images_warped_f, corners, masks_warped);
Can someone help me? tell me the meaning of images_warped_f
and corners
.Thank u so much!
For every image we have type defined. You can check here for more information. images_warped_f is the vector of images converted to type 5. Corners is the vector of left corner points of the images you are trying to stitch. If you use the SphericalWarper to warp your image, the warp function would perform a spherical projectiona and return you the top left corner of the result image. You can check here for reference.