plateNumber.go 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. package eventServer
  2. import (
  3. "encoding/base64"
  4. "fmt"
  5. "github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common"
  6. "github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common/errors"
  7. "github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common/profile"
  8. "github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common/regions"
  9. ocr "github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/ocr/v20181119"
  10. )
  11. func CallLicensePlateRecognitionAPI(file []byte) (number string, err error) {
  12. // 实例化一个认证对象,入参需要传入腾讯云账户 SecretId 和 SecretKey,此处还需注意密钥对的保密
  13. credential := common.NewCredential(
  14. "SecretId",
  15. "SecretKey",
  16. )
  17. // 实例化一个client选项
  18. cpf := profile.NewClientProfile()
  19. cpf.HttpProfile.Endpoint = "ocr.tencentcloudapi.com"
  20. // 实例化要请求产品的client对象,clientProfile是可选的
  21. client, _ := ocr.NewClient(credential, regions.Shanghai, cpf)
  22. // 实例化一个请求对象,每个接口都会对应一个request对象
  23. request := ocr.NewLicensePlateOCRRequest()
  24. base64String := base64.StdEncoding.EncodeToString(file)
  25. request.ImageBase64 = common.StringPtr(base64String)
  26. // 返回的resp是一个LicensePlateOCRResponse的实例,与请求对象对应
  27. response, err := client.LicensePlateOCR(request)
  28. if _, ok := err.(*errors.TencentCloudSDKError); ok {
  29. fmt.Printf("An API error has returned: %s", err)
  30. return
  31. }
  32. if err != nil {
  33. panic(err)
  34. }
  35. // 输出json格式的字符串回包
  36. fmt.Printf("%s\n", response.ToJsonString())
  37. fmt.Printf("车牌:%s\n", *response.Response.Number)
  38. return *response.Response.Number, err
  39. }
  40. type AutoGenerated struct {
  41. Response struct {
  42. Color string `json:"Color"`
  43. Confidence int `json:"Confidence"`
  44. LicensePlateInfos []struct {
  45. Color string `json:"Color"`
  46. Confidence int `json:"Confidence"`
  47. Number string `json:"Number"`
  48. Rect struct {
  49. Height int `json:"Height"`
  50. Width int `json:"Width"`
  51. X int `json:"X"`
  52. Y int `json:"Y"`
  53. } `json:"Rect"`
  54. } `json:"LicensePlateInfos"`
  55. Number string `json:"Number"`
  56. Rect struct {
  57. Height int `json:"Height"`
  58. Width int `json:"Width"`
  59. X int `json:"X"`
  60. Y int `json:"Y"`
  61. } `json:"Rect"`
  62. RequestID string `json:"RequestId"`
  63. } `json:"Response"`
  64. }