Skip to content

Commit

Permalink
Revert "Added onnx support for C samples"
Browse files Browse the repository at this point in the history
This reverts commit 3f6f494.
  • Loading branch information
mryzhov committed Feb 16, 2021
1 parent 3f6f494 commit 378be8b
Showing 1 changed file with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,22 +271,6 @@ void int2str(char *str, int num) {
}
}

/**
* @brief Extract filename extention;
* @param char A constant pointer to the filename string.
* @return A constant pointer to the filename extention string
*/
const char* getFileNameExt(const char* filename) {
const char* fileExtention = "";

const char* dot = strrchr(filename, '.');
if (dot && dot != filename) {
fileExtention = dot + 1;
}

return fileExtention;
}

int main(int argc, char **argv) {
/** This sample covers certain topology and cannot be generalized for any object detection one **/
ie_version_t version = ie_c_api_version();
Expand Down

0 comments on commit 378be8b

Please sign in to comment.