NanoNets
  1. Schemas
NanoNets
  • Image Classification Model Predict
    • Prediction for image File
      POST
    • Prediction for image URLs
      POST
  • Image Classification Model
    • Get Model by Id
      GET
    • Create New Model
      POST
    • Get All Models
      GET
  • Image Classification Model Train
    • Train Model
      POST
  • Image Classification Model Upload
    • Upload training images by File
      POST
    • Upload training images by Url
      POST
  • OCR Predict
    • Get Prediction File By Page ID
      GET
    • Get All Prediction Files
      GET
    • Get Prediction File By File ID
      GET
    • Prediction for image file
      POST
    • Async Prediction for image file
      POST
    • Prediction for image url
      POST
    • Async Prediction for image url
      POST
  • Get Full Text
    • Get Full Text
      POST
  • OCR Model
    • Create New Model
      POST
    • Get Model by Id
      GET
  • OCR Train
    • Train Model
  • OCR Upload
    • Upload training images by File
    • Upload training images by Url
  • 数据模型
    • Schemas
      • Bndbox
      • Create New Model Body
      • Annotation Object
      • Annotations
      • Upload Training Images Body
  1. Schemas

UploadTrainingImagesByUrlrequest(Upload Training Images Body)

{
    "data": [
        {
            "filename": "https://nanonets.s3-us-west-2.amazonaws.com/test-images/test1.jpg",
            "object": [
                {
                    "bndbox": {
                        "xmax": 100,
                        "xmin": 1,
                        "ymax": 100,
                        "ymin": 1
                    },
                    "name": "{{category1}}"
                }
            ]
        }
    ],
    "urls": [
        "https://nanonets.s3-us-west-2.amazonaws.com/test-images/test1.jpg"
    ]
}
Built with