Hi,
I was going through the documentation (https://documentation.catchoom.com/) and came across with this Gem. But, when I compared the functionalities given by this gem with functionalities given in PHP and Python languages, I found that search method is missing in this gem.
Here're more details of what I was trying to look:
# search method definition in python
filename = "query.jpg" # use your own query image
result_list = craftar.search(token, filename)
// search method defined in PHP
$recognition = new Recognition(Recognition::API_VERSION_1, $token);
$options = array();
$response = $recognition->search("./images/query/Shopping-cart.png", $options);
But there is no search method defined/declared in this gem as part of Ruby.
Please let me know if, I am missing something!
Hi,
I was going through the documentation (https://documentation.catchoom.com/) and came across with this Gem. But, when I compared the functionalities given by this gem with functionalities given in
PHPandPythonlanguages, I found thatsearchmethod is missing in this gem.Here're more details of what I was trying to look:
But there is no
searchmethod defined/declared in this gem as part of Ruby.Please let me know if, I am missing something!