File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -62,13 +62,13 @@ Searching operation is performed by the following method:
62
62
63
63
```python
64
64
# for searching, you need to give the image path and the number of the similar image you want
65
- SerachImage ().get_similar_images(image_path = image_list[0 ],number_of_images = 5 )
65
+ SearchImage ().get_similar_images(image_path = image_list[0 ],number_of_images = 5 )
66
66
```
67
67
you can also plot some similar images for viewing purpose by following the code method:
68
68
69
69
```python
70
70
# If you want to plot similar images you can use this method, It will plot 16 most similar images from the data index
71
- SerachImage ().plot_similar_images(image_path = image_list[0 ])
71
+ SearchImage ().plot_similar_images(image_path = image_list[0 ])
72
72
```
73
73
74
74
# # Complete Code
@@ -81,9 +81,9 @@ image_list = LoadData().from_folder(['images','wiki-images'])
81
81
# For Faster Serching we need to index Data first, After Indexing all the meta data stored on the local path
82
82
Index(image_list).Start()
83
83
# for searching you need to give the image path and the number of similar image you want
84
- SerachImage ().get_similar_images(image_path = image_list[0 ],number_of_images = 5 )
84
+ SearchImage ().get_similar_images(image_path = image_list[0 ],number_of_images = 5 )
85
85
# If you want to plot similar images the you can use this method, It will plot 16 most similar images from the data index
86
- SerachImage ().plot_similar_images(image_path = image_list[0 ])
86
+ SearchImage ().plot_similar_images(image_path = image_list[0 ])
87
87
```
88
88
89
89
# # License
You can’t perform that action at this time.
0 commit comments