Next Article in Journal
Breathable and Stretchable Organic Electrochemical Transistors with Laminated Porous Structures for Glucose Sensing
Next Article in Special Issue
Quality Control of Carbon Look Components via Surface Defect Classification with Deep Neural Networks
Previous Article in Journal
ICT Framework for Supporting Applied Behavior Analysis in the Social Inclusion of Children with Neurodevelopmental Disorders
Previous Article in Special Issue
Progressively Unsupervised Generative Attentional Networks with Adaptive Layer-Instance Normalization for Image-to-Image Translation
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Vision-Based Jigsaw Puzzle Solving with a Robotic Arm

Department of Electrical Engineering, Yuan Ze University, Taoyuan 32003, Taiwan
*
Author to whom correspondence should be addressed.
Sensors 2023, 23(15), 6913; https://doi.org/10.3390/s23156913
Submission received: 15 June 2023 / Revised: 31 July 2023 / Accepted: 1 August 2023 / Published: 3 August 2023
(This article belongs to the Special Issue Artificial Intelligence in Imaging Sensing and Processing)

Abstract

:
This study proposed two algorithms for reconstructing jigsaw puzzles by using a color compatibility feature. Two realistic application cases were examined: one involved using the original image, while the other did not. We also calculated the transformation matrix to obtain the real positions of each puzzle piece and transmitted the positional information to the robotic arm, which then put each puzzle piece in its correct position. The algorithms were tested on 35-piece and 70-piece puzzles, achieving an average success rate of 87.1%. Compared with the human visual system, the proposed methods demonstrated enhanced accuracy when handling more complex textural images.

1. Introduction

Jigsaw puzzles are commonly enjoyed by children and adults. The pictures used in jigsaw puzzles mostly display natural scenes and buildings. A jigsaw puzzle usually comprises puzzle pieces with a rectangular profile; its content is often informative, and its color and outline contrasts are sharp. Furthermore, each corner piece of a jigsaw puzzle has a recognizable component of the picture or design of the puzzle. Therefore, humans can piece together specific parts of a puzzle and subsequently put all the pieces together. When the original image is available, a player identifies specifics of the region of a set of puzzle pieces and compares them with the original image. Subsequently, the player classifies the puzzle pieces into various groups via feature similarity. They check the puzzle pieces’ colors, shapes, or patterns to determine whether two puzzle pieces are adjacent, and this process is repeated until the puzzle is completed. However, in cases where the original image is unavailable, solving the puzzle reconstruction becomes more challenging. The only available clues are image-based characteristics, such as color, edges, and specific templates. With numerous possible combinations to consider, it significantly increases the difficulty of puzzle solving. The trial-and-error approach is often employed, but its main drawback is inefficiency.
When a computer-vision-based solution is applied, directly comparing the colors or patterns on the edges of a jigsaw puzzle for continuity is a feasible approach. However, calculating the level of similarity between two puzzle pieces is a highly complex and time-consuming task. Therefore, when the original image is available, we can focus on the features of the puzzle pieces and compare them with those of the image. The goal is to determine the relationship between the puzzle and the image’s features. To solve this problem, the present study applied the scale-invariant feature transform (SIFT) [1] to search for features in an image and then used a random sample consensus (RANSAC) [2] algorithm to determine the optimal combination for whole pieces.
Solving jigsaw puzzle problems is a challenging but extensively researched task in computer vision research. Researchers proposed image processing and pattern recognition methods for solving jigsaw problems [3]. Those solutions consider the shape of each puzzle piece and the similarity between adjacent pieces. In general, the methods for solving jigsaw puzzle problems can be classified into two types. The first type involves the use of the original image, whereas the second type does not involve the use of this information. Li et al. [4] applied the SIFT algorithm to extract the features of each puzzle piece and those of the original image of a jigsaw puzzle. The features of each piece were matched to the regions of the original image that exhibited the most similarity with them. Furthermore, some researchers examined the relationship of puzzle pieces with specific shapes. The robust template-matching algorithm [5] is suitable for solving the aforementioned problem.
Without using original images, Demaine and Demaine [6] indicated that solving jigsaw puzzles is an NP-hard problem. For problems involving fossil reconstruction [7], archaeological finds [8], torn images, and document reconstruction [9,10,11], Willis and Cooper [12] proposed two-dimensional and three-dimensional methods. Leitão and Stolfi [13] formulated a tile reconstruction algorithm with dynamic programming. Andalá et al. [14] applied quadratic programming and gradient ascent methods to solve puzzles. These studies highlighted that designing an efficient algorithm is crucial. When the puzzle pieces of a jigsaw puzzle are rectangular, all pieces share the same feature with respect to their shape; therefore, these pieces can only be matched by calculating the levels of similarity between the edges of puzzle pieces [15,16,17,18]. In this situation, the aforementioned algorithm would continually check the correctness of a puzzle combination, gradually increasing the size of the puzzle. In addition to the method of feature extraction, the algorithm for obtaining a puzzle combination is crucial. Moussa et al. [19] used a greedy algorithm to identify an optimal puzzle combination. Sholomon et al. [20] used an iterative genetic algorithm to calculate averaged results. Recently, a few solutions for the puzzle reassembly problem were proposed by using deep learning-based [21] and reinforcement-learning-based [22] algorithms. In addition, Bridger et al. [23] presented an approach that involves filling in the eroded boundaries between puzzle pieces by using a generative adversarial network (GAN). Similarly, the puzzle reassembly was formulated as a combinatorial optimization problem and then solved using a genetic algorithm [24].
The present study proposed two algorithms for solving jigsaw puzzle problems. The first algorithm was applied when the original image was available, and SIFT and RANSAC were used to reconstruct a puzzle efficiently. An example of pixel matching and filtering is shown in Figure 1. The second algorithm was applied when the original image was unavailable, and a greedy-based algorithm with a repair mechanism was used to solve the problems presented in this scenario. We also used our algorithms with a robotic arm to demonstrate that our solutions can be applied in a practical setting.
The main contributions of this study are as follows:
(1)
A proposed algorithm that is fast and accurate for solving puzzle reconstruction when the original image is available.
(2)
The presentation of a lightweight and systematic algorithm for solving puzzle reconstruction without relying on the availability of the original image.
(3)
Improved accuracy was observed when dealing with more complex textural images.
(4)
The algorithm maintained a linear complexity, regardless of the complexity of the test image.

2. The Proposed Algorithms

2.1. The Algorithm with the Original Image

SIFT is a widely used algorithm in computer vision research. The SIFT feature descriptor is invariant to rotation, scaling, and illumination, and it is often used to identify the features in target images. The speeded up robust features (SURF) [25] and oriented FAST and rotated BRIEF (ORB) algorithms [26] are similar to SIFT. SURF has an advantage over SIFT in computational speed, but SIFT is more accurate. ORB is faster than SURF, but it does not exhibit scale invariance and is more sensitive to the noise in an image. In the present study, we applied SIFT because of its higher accuracy relative to ORB.
The flowchart of the algorithm is shown in Figure 2, which can be divided into three steps, namely, the extraction of feature points, the determination of the directions of feature point gradients, and the building of a SIFT descriptor.

2.1.1. Feature Point Extraction

Each fragmented puzzle piece can be randomly placed at different angles, making rotation invariance necessary. Additionally, scaling may vary slightly due to the distance from which the images are captured, albeit not significantly. However, to maintain the adaptability of the system, it is still essential to have a feature point extraction method that is both scaling and rotation invariant. As a result, we built the difference-of-Gaussian (DoG) pyramid and used the differences between Gaussian blur images at different scales to identify feature points. Through this method, we could ensure that our feature points were scale and rotation invariant. We initially used two different scale images to build a pyramid layer. The first layer was double the size of the original image, the second layer was the original image, and the third and fourth layers were the original image reduced by one and two times, respectively. The scaled Gaussian function is defined as follows:
G x , y , σ = 1 2 π σ 2 e x 2 + y 2 2 σ 2
A Gaussian blur image and a DoG image are defined as follows:
D x , y , σ = G x , y , p σ G x , y , σ   I x , y
L x , y , σ = G x , y , σ I x , y
Notably, p is a constant and is usually set to a value of 2. σ is a parameter for Gaussian smoothing. A larger value of σ will result in a broader range being considered, but the proportion of the outermost pixels in the calculation will decrease relative to the inner pixels.

2.1.2. Determining the Direction of Feature Point Gradients

To identify the feature points in a DoG pyramid, each sampling point must be compared with all of its adjacent points. Specifically, a sampling point must be compared with the eight pixels adjacent to it in the middle layer and the nine pixel points in the upper and lower layers. That is, each sampling point must be compared with the 26 points adjacent to it. If a sampling point’s grayscale value is greater than those of these 26 points, it is regarded as a feature point.

2.1.3. Building a SIFT Descriptor

For each feature point, the gradient used to describe the direction of the feature point was calculated. After the feature point direction was obtained, it could be rotated to the main gradient direction for matching. The gradient direction was determined by generating a gradient direction histogram with 16 × 16 pixels around the feature point. The gradient direction θ and intensity m of the pixel position (x, y) in an image are calculated as follows:
θ x , y = tan 1 L x , y + 1 L x , y 1 L x + 1 , y L x 1 , y
m x , y = ( L x + 1 , y L x 1 , y ) 2 + ( L x , y + 1 x , y 1 ) 2

2.1.4. RANSAC Algorithm

Because a puzzle may exhibit numerous similar local patterns, the feature points detected through SIFT may also generate incorrect matching pairs. However, without the correct matching pairs, the next step puzzle matching matrix will be calculated incorrectly. Therefore, the present study applied the RANSAC [2] algorithm to exclude incorrect matching pairs. The RANSAC algorithm was proposed by Fischler and Bolles, who applied random sampling techniques to identify the parameters of a model from a set of observed data. In the present study, three pairs of feature point matching pairs between origin images and target images were randomly sampled to calculate the transformation matrix. Subsequently, we calculated the distance between each matching pair after performing a transformation procedure. If the distance between matching pairs was less than 3, the pairs were regarded as an inlier group. Subsequently, we randomly selected another three matching pairs and repeated the aforementioned step. After this iterative process was completed, we obtained the transform matrix that contained the highest number of inlier matching pairs.
We set n as the number of feature points, S = s 0 , s 1 , , s n as the feature points in a puzzle image, and D = d 0 , d 1 , , d m as the distance in a matching set with m pairs obtained from SIFT. k is the number of iterations used in the RANSAC method; it is employed to match feature point pairs’ relative positional relationships. Increasing k can better ensure the removal of mismatched feature point pairs, but it also increases the computational complexity. The main steps of RANSAC performed in the presented study were as follows:
Step 1.
Three matching pairs in S were randomly sampled, and the transform matrix was calculated using a selected pair.
Step 2.
The feature points in a target image were transformed, and a newer D = d 0 , d 1 , , d m was obtained.
Step 3.
The distance in D was calculated, and a check was performed to determine whether this distance was less than the threshold d t .
Step 4.
Steps 1–3 were repeated k times, and the maximum inlier pairs were selected as a result.

2.1.5. Transformation Matrix

Assume that M denotes a 2-by-3 transformation matrix. It can be obtained using three sets of feature point pairs, which can determine the orientation and, subsequently, the rotation angle. Since the puzzle itself was placed flat on the table and has minimal deformation compared with the camera’s perspective, an affine-based transformation method could be used to achieve this. The set of points S ~ denotes three randomly selected feature points from the puzzle pieces, denoted as S ~ = {s1,s2,s3}. The set of points D ~ represents the set of three target feature points that S ~ is matched to, which is denoted as D ~ = {d1,d2,d3}. Each point in the set represents a coordinate.
x i y i = M · x i y i 1
d i = x i , y i ,     s i = x i , y i ,   i = 0,1 , 2
Next, we applied the slope and angle formulas to calculate the angle θ at which the puzzle fragment is rotated onto the original image. Then, from the contour feature, we could obtain the coordinates of the center point of the puzzle using the following equation:
x m , y m = ( M 11 x m + M 12 y m + M 13 , M 21 x m + M 22 y m + M 23 )

2.2. The Algorithm without the Original Image

When the original image was unavailable, a feature could only be obtained by examining the color information on the edge of each puzzle piece. The flowchart of the proposed is shown in Figure 3. First, we applied the concept of the Hausdorff distance with Sobel filter similarity to select the best piece (BP) as our initial puzzle piece. Subsequently, we expanded the BP as the combination of 3 × 3 puzzle pieces with the BP as the center. Thereafter, we built an algorithm called “square expansion” to identify the initial combination. Because numerous pieces in an initial combination are usually at incorrect positions, we set a threshold to remove incorrect pieces. The remaining pieces in an initial combination were regarded as the “main track.” Subsequently, the puzzle pieces that were not in the main track were filled in the surrounding of the main track to increase the size of the main track. Finally, based on a puzzle’s size, we removed the exposed puzzle pieces and put them back to achieve local optimal results.
The algorithm that was used when the original image was unavailable comprised four steps. The first step was searching for the BP, the second was building an initial combination and the main track, the third was refining the main track and building the second combination, and the fourth was setting the threshold for obtaining the third combination.

2.2.1. Best Piece (BP)

In the present study, the Sobel filter H was defined as follows:
H = 1 1 2 2 1 1
We assumed that all puzzles piece were squares of length and width n, and e l and e r were the column vectors of the two adjacent edges. We merged the edges of two pieces and calculated the corresponding convolution with H. Figure 4 presents a diagram of the Sobel filter similarity, which is defined using the following equation:
v f = H e l |   e r  
v f ¯ = v f
where ∗ denotes the convolution operation between H and e l | e r . The similarity between two edges is expressed as follows:
S i m e l ,   e r = 1 1 + v f ¯
The following algorithm was based on the Hausdorff distance. However, the probability-based [27] and learning-based approaches [28] can be also taken into consideration. Instead of using the average similarity, we used the minimum value of the four edges of a puzzle piece as its score. We let N denote the total number of puzzle pieces. First, we randomly selected the nth piece as the candidate puzzle piece P n from the total number of N puzzles. The four edges of the candidate piece were compared with those of other pieces. We temporarily combined the two most similar puzzle pieces via Sobel filter similarity. Thereafter, we could obtain a combination of cross-shaped pieces. The similarity of the four directions of the candidate puzzle was represented as S n r , S n l , S n u , S n t for the right, left, bottom, and top sides, respectively. The score for the nth piece was defined as follows:
h d P n = m i n ( S n r , S n l , S n u , S n t )
The BP was expressed as follows:
B P = argmax n 0 , , n     h d P n

2.2.2. Initial Combination

We first identified the four corners of the cross-shape corresponding to the puzzle. This step was similar to the BP search, but the edge length involved in the similarity calculation was twice that involved in the BP search. Hence, the reliability of the 3 × 3 combination was high. After the initial 3 × 3 set was completed, we built a “square expansion” algorithm, which continuously pieced a puzzle together by applying the 3 × 3 combination. We set S s i d e { S t , S r , S u , S l } as the mean similarity score for a given piece’s four directions. With the top direction serving as an example, P i , j t is the top edge of the piece on a rectangular puzzle combination with a length and width of m and n, respectively, and P i 1 , j u is the edge of the most similar piece, as identified using P m , n t . The mean similarity score was expressed as follows:
S t = S i m P 1,1 t , P 0,1 u + + S i m P 1 , m t , P 0 , m u m
S r = S i m P 1 , m r , P 1 , m + 1 l + + S i m P n , m r , P n , m + 1 l n
S u = S i m P n , 1 u , P n + 1,1 t + + S i m P n , m u , P n + 1 , m t m
S l = S i m P 1,1 l , P 1,0 r + + S i m P n , 1 l , P n , 0 r m
The similarity scores in this study did not represent the final similarity value between patches. It was influenced by factors, such as the patch size and whether the patch was grayscale or colored. The average was used to find one of the most reliable edges for conducting the main track search. The range of this parameter did not necessarily span from 0 to 1, as it was used differently in this context.
After the average similarity of the four edges was calculated, we selected the edge with the highest level of similarity with our piecing direction. For example, if m a x ( S t , S r , S u , S l ) = S t , then P 0,0   , P 0,1   , P 0,2   , , P 0 , m   would be added to the top direction of the initial set. This step was repeated until all puzzle pieces were processed. Figure 5 presents an example of how the square expansion process was performed.

2.2.3. Main Track

Given that the initial combination contained an excessive number of misplaced puzzle pieces and that the puzzle pieces connected to these misplaced puzzle pieces were also incorrect, we set a threshold for eliminating the puzzle pieces with a similarity level that was less than the threshold. The remaining sections of the puzzle where the misplaced puzzle pieces were removed were referred to as the main track.

2.2.4. Second Combination

After the completion of the main track, the next step was obtaining the second combination. Because the relationship between the position of the main track and the result was unknown, when the second combination was obtained, all the possible positions of the puzzle pieces were around the main track. For the second combination, the remaining puzzle pieces were placed one by one around the main track, and each puzzle piece had four possible directions. The second combination was completed when the remaining puzzles were all placed in order.

2.2.5. Third Combination

In some cases, the aspect ratio of the puzzle result was known. If the length × width of the second combination was equal to the known length × width of a rectangle, the result of the second combination was the final result. Otherwise, the rectangle was put as close as possible to the main track. The out-of-range puzzle pieces were removed and put back within the puzzle boundary. The second combination method was applied, the most similar puzzle piece was selected, and the puzzle number and rotation direction were obtained. When the remaining puzzle pieces were all placed on the puzzle, the third combination was obtained as the result.

3. Experimental Results

3.1. Experimental Setup

We conducted all experiments using Python 3.6 and an Intel i7-4790 CPU with 10 GB of RAM. When an original image was used, we used two cameras and one robotic arm. The robotic arm was a DOBOT Arm Magician [29] with a plug-in suction cup. The setup is shown in Figure 6.
The active range of axis 4 of the robot arm was between 135° and −135°, and the initial angle θ 0 was set to 0°. If the rotation angle was between 135° and 225°, the puzzle pieces caused an error because the end angle θ 1 was out of range. Subsequently, the robotic arm had to put down the piece it was holding and execute another rotation. This process increased the time required to complete a puzzle. Therefore, we designed a pre-rotation table for this problem in Table 1.
We set θ as the rotation angle of a puzzle piece adjusted to the correct direction. If θ was set as 180°, the robot arm first rotated −45° to reach θ 0 . Subsequently, the suction cup of the robot arm was used to pick up the puzzle piece and to rotate its angle from −45° to 135°. Finally, θ (180°) was rotated without any additional rotation.

3.2. Result with the Original Image

We applied our puzzle assembly algorithms to a set of 10 images with different styles; they included animated pictures, natural landscapes, and jigsaw pictures with complex patterns. We first resized the images, cut them to produce multiple square puzzles, and then randomly rearranged and rotated the puzzles. Each image was formed from approximately 35 to 70 puzzle pieces, and each piece was determined to be a correct puzzle piece only if its rotation angle and placement were both correct.
SIFT feature matching uses the Euclidean distance to calculate the ratio of the closest matching feature descriptor to the second-closest matching feature descriptor. A lower threshold can obtain more feature points, whereas a higher threshold can obtain more accurate feature pairs. Therefore, we tested the images and recorded the number of correct matches of feature points under various threshold ranges. The experimental results indicated that the maximum number of successful matches was obtained when the threshold was set between 0.5 and 0.7. Although we obtained favorable results when the threshold was <0.5, several extreme cases led to highly negative results. Furthermore, we applied RANSAC to identify the correct feature pair matches and to calculate the transformation matrix. Finally, the robotic arm placed all of the puzzle pieces in what it deemed to be the correct positions.

3.3. Result without the Original Image

For this component of the present study, we tested the same images that were used in the previous subsection. The experimental result is presented in Table 2. First, we investigated the relationship between similarity and the initial combination. In addition, the longer the length of an edge was, the more reliable the level of similarity was. We first calculated each puzzle piece’s corresponding edge. For a 7 × 5 puzzle, 58 adjacent edge pairs needed to be calculated; for a 10 × 7 puzzle, 123 adjacent edge pairs needed to be calculated. Thus, we obtained more accurate pairs with different edge sizes and different numbers of pieces.
We also observed that larger puzzle sizes led to more accurate results. When the number of pieces increased, the accuracy ratio pertaining to the correct neighbor decreased. This occurred because numerous similar short edges resulted in the incorrect neighbor being obtained. Empirically, >50% of the correct matches could identify the BP.
When we obtained an initial combination, we set a threshold to eliminate the incorrect puzzle pieces on the main track. Therefore, we conducted an experiment to determine how the threshold affected the iteration time and accuracy (Table 3). Consequently, when the threshold ratio was set to 0.9, an excessive number of pieces were filtered to form the main track, resulting in many iterations. By contrast, a low ratio led to an excessive number of incorrect puzzle pieces on the main track, resulting in unfavorable results. Our experimental results indicated that the low threshold for the 35-piece puzzle provided more favorable results because of its longer puzzle edge and its smaller number of combinations relative to the 70-piece puzzle. Thus, the main track was correct and did not require a large threshold to build a second combination. When the puzzle was smaller and the number of pieces increased, a higher threshold was required to ensure that the main track would always be correct. The step-by-step results without the original image are shown in Figure 7.
The results presented in the paper are applicable to non-rectangular puzzle pieces when the original image is available. The algorithm relies on texture features and feature point matching using RANSAC. For puzzles without an original image, non-rectangular pieces have an advantage, as additional edge shape information can be utilized in the algorithm, making it a shape-priority approach with edge pattern similarity as a supplementary matching method. Consequently, non-rectangular puzzle pieces are better suited for our foundational algorithm.
In some applications of jigsaw puzzle solving (e.g., archaeological images), the presence of noise can affect the accuracy of the feature matching and effectiveness of the feature point detection. Especially for puzzles with an original image, noise can introduce matching errors. However, for archaeological applications, where edge similarity is the primary method, noise can cause matching inaccuracies. To address this, we increase the reliance on edge shape similarity to determine whether two fragments are adjacent.

4. Conclusions

Solving a jigsaw puzzle is a challenging task in computer vision research, and it can be applied to the stitching or reconstruction of fragmented images. Algorithms for solving jigsaw puzzles were classified into two types, namely, those involving the use of the original image and those not involving the use of the original image. The algorithms that used the original image calculated the SIFT features on puzzle pieces and the original image and used the RANSAC algorithm to determine correct matches. The corresponding transformation matrix was calculated, and the corresponding coordinates for the robotic arm were obtained to place each of the puzzle pieces. By contrast, the algorithms that did not use original images were more difficult to use; this was because they had to solve NP-hard problems to calculate the arrangement of all puzzle pieces. We calculated the Sobel similarity between all matching edge pairs. The initial combination, the main track, the second combination, and the third combination were sequentially calculated by using a greedy algorithm to complete a puzzle. For the experimental results obtained using the original image, we performed a test to rebuild a jigsaw puzzle using a robot arm in real-world settings, and we achieved excellent results for most of the analyzed images. For the experimental results obtained without the use of original images, we tested the effect of various thresholds for speed and accuracy and achieved more favorable results relative to those of other studies. The proposed algorithm exhibited versatility in handling puzzle pieces of various shapes, including those with high color variance, complex textures, and even grayscale images. Its potential applications extend to industrial settings, particularly in tasks like visual inspection and mechanical assembly, where the assistance of robotic arms can be effectively utilized.

Author Contributions

Conceptualization, H.-C.S. and C.-L.L.; methodology, H.-C.S. and C.-L.L.; software, C.-L.L. and C.-H.M.; validation, C.-L.L. and C.-H.M.; formal analysis, H.-C.S.; investigation, H.-C.S. and C.-L.L.; resources, C.-L.L. and C.-H.M.; data curation, H.-C.S. and C.-L.L.; writing—original draft preparation, C.-L.L. and C.-H.M.; writing—review and editing, H.-C.S. and C.-H.M.; visualization, C.-L.L. and C.-H.M.; supervision, H.-C.S.; project administration, H.-C.S.; funding acquisition, H.-C.S. All authors have read and agreed to the published version of the manuscript.

Funding

This research work was partially supported by the National Science and Technology Council, grant number 111-2221-E-155-045-MY2.

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

Not applicable.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Lowe, D.G. Distinctive Image Features from Scale-Invariant Keypoints. Int. J. Comput. Vis. 2004, 60, 91–110. [Google Scholar] [CrossRef]
  2. Fischler, M.A.; Bolles, R.C. Random sample consensus: A paradigm for model fitting with applications to image analysis and automated cartography. Commun. ACM 1981, 24, 381–395. [Google Scholar] [CrossRef]
  3. Yao, F.-H.; Shao, G.-F. A shape and image merging technique to solve jigsaw puzzles. Pattern Recognit. Lett. 2003, 24, 1819–1835. [Google Scholar] [CrossRef] [Green Version]
  4. Li, H.; Zheng, Y.; Zhang, S.; Cheng, J. Solving a Special Type of Jigsaw Puzzles: Banknote Reconstruction From a Large Number of Fragments. IEEE Trans. Multimed. 2014, 16, 571–578. [Google Scholar] [CrossRef]
  5. Shih, H.-C.; Yu, K.-C. SPiraL Aggregation Map (SPLAM): A new descriptor for robust template matching with fast algorithm. Pattern Recognit. 2015, 48, 1707–1723. [Google Scholar] [CrossRef]
  6. Demaine, E.D.; Demaine, M.L. Jigsaw Puzzles, Edge Matching, and Polyomino Packing: Connections and Complexity. Graphs Comb. 2007, 23, 195–208. [Google Scholar] [CrossRef] [Green Version]
  7. Chung, M.G.; Fleck, M.M.; Forsyth, D.A. Jigsaw puzzle solver using shape and color. In Proceedings of the ICSP’98. 1998 Fourth International Conference on Signal Processing, Beijing, China, 12–16 October 1998; IEEE: New York City, NY, USA, 1998; Volume 2, pp. 877–880. [Google Scholar]
  8. Sagiroglu, M.S.; Ercil, A. A Texture Based Matching Approach for Automated Assembly of Puzzles. In Proceedings of the 18th International Conference on Pattern Recognition (ICPR’06), Hong Kong, China, 20–24 August 2006; Volume 3, pp. 1036–1041. [Google Scholar]
  9. Nielsen, T.R.; Drewsen, P.; Hansen, K. Solving jigsaw puzzles using image features. Pattern Recognit. Lett. 2008, 29, 1924–1933. [Google Scholar] [CrossRef]
  10. Lin, H.-Y.; Fan-Chiang, W.-C. Reconstruction of shredded document based on image feature matching. Expert Syst. Appl. 2012, 39, 3324–3332. [Google Scholar] [CrossRef]
  11. Pimenta, A.; Justino, E.; Oliveira, L.S.; Sabourin, R. Document reconstruction using dynamic programming. In Proceedings of the 2009 IEEE International Conference on Acoustics, Speech and Signal Processing, Taipei, Taiwan, 19–24 April 2009; pp. 1393–1396. [Google Scholar]
  12. Willis, A.R.; Cooper, D.B. Computational reconstruction of ancient artifacts. IEEE Signal Process. Mag. 2008, 25, 65–83. [Google Scholar] [CrossRef]
  13. Leitao, H.C.D.G.; Stolfi, J. A multiscale method for the reassembly of two-dimensional fragmented objects. IEEE Trans. Pattern Anal. Mach. Intell. 2002, 24, 1239–1251. [Google Scholar] [CrossRef]
  14. Andaló, F.A.; Taubin, G.; Goldenstein, S. PSQP: Puzzle Solving by Quadratic Programming. IEEE Trans. Pattern Anal. Mach. Intell. 2017, 39, 385–396. [Google Scholar] [CrossRef] [PubMed]
  15. Cho, T.S.; Avidan, S.; Freeman, W.T. A probabilistic image jigsaw puzzle solver. In Proceedings of the 2010 IEEE Computer Society Conference on Computer Vision and Pattern Recognition, San Francisco, CA, USA, 13–18 June 2010; pp. 183–190. [Google Scholar]
  16. Gallagher, A.C. Jigsaw puzzles with pieces of unknown orientation. In Proceedings of the 2012 IEEE Conference on Computer Vision and Pattern Recognition, Providence, RI, USA, 16–21 June 2012; pp. 382–389. [Google Scholar]
  17. Mondal, D.; Wang, Y.; Durocher, S. Robust Solvers for Square Jigsaw Puzzles. In Proceedings of the 2013 International Conference on Computer and Robot Vision, Regina, SK, Canada, 28–31 May 2013; pp. 249–256. [Google Scholar]
  18. Pomeranz, D.; Shemesh, M.; Ben-Shahar, O. A fully automated greedy square jigsaw puzzle solver. CVPR 2011, 2011, 9–16. [Google Scholar]
  19. Moussa, A. Jigsopu: Square Jigsaw Puzzle Solver with Pieces of Unknown Orientation. Int. J. Adv. Comput. Sci. Appl. 2015, 6, 77–80. [Google Scholar]
  20. Sholomon, D.; David, O.; Netanyahu, N.S. A Genetic Algorithm-Based Solver for Very Large Jigsaw Puzzles. In Proceedings of the 2013 IEEE Conference on Computer Vision and Pattern Recognition, Portland, OR, USA, 23–28 June 2013; pp. 1767–1774. [Google Scholar]
  21. Paumard, M.-M.; Picard, D.; Tabia, H. Deepzzle: Solving Visual Jigsaw Puzzles With Deep Learning and Shortest Path Optimization. IEEE Trans. Image Process. 2020, 29, 3569–3581. [Google Scholar] [CrossRef] [PubMed]
  22. Song, X.; Jin, J.; Yao, C.; Wang, S.; Ren, J.; Bai, R. Siamese-Discriminant Deep Reinforcement Learning for Solving Jigsaw Puzzles with Large Eroded Gaps. Proc. AAAI Conf. Artif. Intell. 2023, 37, 2303–2311. [Google Scholar] [CrossRef]
  23. Bridger, D.; Danon, D.; Tal, A. Solving Jigsaw Puzzles with Eroded Boundaries. In Proceedings of the 2020 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Seattle, WA, USA, 13–19 June 2020; pp. 3523–3532. [Google Scholar]
  24. Song, X.; Yang, X.; Ren, J.; Bai, R.; Jiang, X. Solving Jigsaw Puzzle of Large Eroded Gaps Using Puzzlet Discriminant Network. In Proceedings of the ICASSP 2023–2023 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), Rhodes Island, Greece, 4–10 June 2023. [Google Scholar]
  25. Bay, H.; Ess, A.; Tuytelaars, T.; Van Gool, L. Speeded-Up Robust Features (SURF). Comput. Vis. Image Underst. 2008, 110, 346–359. [Google Scholar] [CrossRef]
  26. Rublee, E.; Rabaud, V.; Konolige, K.; Bradski, G. ORB: An efficient alternative to SIFT or SURF. In Proceedings of the 2011 International Conference on Computer Vision, Ein-Gedi, Israel, 29 May–2 June 2011; pp. 2564–2571. [Google Scholar]
  27. Huang, C.L.; Shih, H.C.; Chen, C.L. Shot and Scoring Events Identification of Basketball Videos. In Proceedings of the 2006 IEEE International Conference on Multimedia and Expo, Toronto, ON, Canada, 9–12 July 2006; pp. 1885–1888. [Google Scholar]
  28. Ma, C.H.; Shih, H.C. Human Skin Segmentation Using Fully Convolutional Neural Networks. In Proceedings of the 2018 IEEE 7th Global Conference on Consumer Electronics (GCCE), Nara, Japan, 9–12 October 2018; pp. 168–170. [Google Scholar]
  29. DOBOT. DOBOT Magician Lite Robotic Arm [Online]. Available online: https://www.dobot-robots.com/products/education/magician.html (accessed on 11 April 2023).
Figure 1. Example of (a) SIFT matching pairs and (b) filtered pairs using RANSAC, where the blue box denotes the mapped location of the patch with rotation angle in original image.
Figure 1. Example of (a) SIFT matching pairs and (b) filtered pairs using RANSAC, where the blue box denotes the mapped location of the patch with rotation angle in original image.
Sensors 23 06913 g001
Figure 2. Flowchart of the proposed method with an original image.
Figure 2. Flowchart of the proposed method with an original image.
Sensors 23 06913 g002
Figure 3. Flowchart of the proposed method without original image.
Figure 3. Flowchart of the proposed method without original image.
Sensors 23 06913 g003
Figure 4. Illustration with Sobel similarity between e l and e r , where the yellow pixels denotes the compaired pixels for filtering BP and red box denotes a slideing wondow.
Figure 4. Illustration with Sobel similarity between e l and e r , where the yellow pixels denotes the compaired pixels for filtering BP and red box denotes a slideing wondow.
Sensors 23 06913 g004
Figure 5. Illustration of the square expansion algorithm: (a) definition of each puzzle piece; (b) example of an update order whiche the color is only for specifying the group.
Figure 5. Illustration of the square expansion algorithm: (a) definition of each puzzle piece; (b) example of an update order whiche the color is only for specifying the group.
Sensors 23 06913 g005
Figure 6. Robotic arm setup in the real world. The robot arm was placed in the middle with cameras on both sides. After we obtained the corresponding real-world position, the robotic arm placed the puzzle on the front whiteboard. The green circles denote the bounding circles of the puzzles.
Figure 6. Robotic arm setup in the real world. The robot arm was placed in the middle with cameras on both sides. After we obtained the corresponding real-world position, the robotic arm placed the puzzle on the front whiteboard. The green circles denote the bounding circles of the puzzles.
Sensors 23 06913 g006
Figure 7. Examples of results without original images.
Figure 7. Examples of results without original images.
Sensors 23 06913 g007
Table 1. Pre-rotation table.
Table 1. Pre-rotation table.
Range   of   θ θ 0 (Start Angle) θ 1 (End Angle)
135 ° ~ 180 ° 135 ° θ 135 °
135 ° ~ 135 ° 0 (as default) θ
180 ° ~ 135 ° 135 ° θ 135 °
Table 2. Accuracy of adjacent pieces combined during the initial combination.
Table 2. Accuracy of adjacent pieces combined during the initial combination.
#Pieces
(#Neighbors)
MethodPuzzle Size (Pixel)#Correct
Neighbors
#Wrong
Neighbors
35 (58)Ours>100535
60~1003325
Cho et al. [15]>1001741
60~1001840
70 (123)Ours60~1007647
<607350
Cho et al. [15]60~1002895
<602697
Table 3. Mean iteration counts and puzzle completion accuracy with diferent threshold ratios.
Table 3. Mean iteration counts and puzzle completion accuracy with diferent threshold ratios.
MethodThreshold Ratio0.10.20.30.40.50.60.70.80.9
35 pcsOursIteration71923293032333334
Puzzle completion accuracy87.1%80%80%69.1%69.1%69.1%76.8%76.8%80%
Cho et al. [15]Iteration192227272831333537
Puzzle completion accuracy11.1%11.1%21.7%53.3%66.3%74.6%86%77.8%77.8%
70 pcsOursIteration122023282932323335
Puzzle completion accuracy61.9%64.4%77.8%50.1%62.5%62.5%62.5%5062.5%
Cho et al. [15]Iteration274556566162656871
Puzzle completion accuracy12.6%12.5%12.6%46.3%62.5%62.5%73.6%73.6%71.6%
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Ma, C.-H.; Lu, C.-L.; Shih, H.-C. Vision-Based Jigsaw Puzzle Solving with a Robotic Arm. Sensors 2023, 23, 6913. https://doi.org/10.3390/s23156913

AMA Style

Ma C-H, Lu C-L, Shih H-C. Vision-Based Jigsaw Puzzle Solving with a Robotic Arm. Sensors. 2023; 23(15):6913. https://doi.org/10.3390/s23156913

Chicago/Turabian Style

Ma, Chang-Hsian, Chien-Liang Lu, and Huang-Chia Shih. 2023. "Vision-Based Jigsaw Puzzle Solving with a Robotic Arm" Sensors 23, no. 15: 6913. https://doi.org/10.3390/s23156913

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop