Skip to content

Commit 7e3dad8

Browse files
authored
Update README.md
1 parent 55c5087 commit 7e3dad8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ Searching operation is performed by the following method:
6262

6363
```python
6464
# 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)
6666
```
6767
you can also plot some similar images for viewing purpose by following the code method:
6868

6969
```python
7070
# 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])
7272
```
7373

7474
## Complete Code
@@ -81,9 +81,9 @@ image_list = LoadData().from_folder(['images','wiki-images'])
8181
# For Faster Serching we need to index Data first, After Indexing all the meta data stored on the local path
8282
Index(image_list).Start()
8383
# 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)
8585
# 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])
8787
```
8888

8989
## License

0 commit comments

Comments
 (0)