我正在使用 Microsoft 的 CustomVision.ai 构建自定义视觉应用程序。
我正在使用本教程: https ://docs.microsoft.com/en-us/azure/cognitive-services/custom-vision-service/csharp-tutorial-od
在某一时刻,我需要:
在对象检测项目中标记图像时,需要使用归一化坐标指定每个标记对象的区域
为此,我需要编写以下代码:
Dictionary<string, double[]> fileToRegionMap = new Dictionary<string, double[]>() {
// FileName, Left, Top, Width, Height
{"scissors_1", new double[] { 0.4007353, 0.194068655, 0.259803921, 0.6617647 } },
{"scissors_2", new double[] { 0.426470578, 0.185898721, 0.172794119, 0.5539216 } },
{"scissors_3", new double[] { 0.289215684, 0.259428144, 0.403186262, 0.421568632 } }
...
其中 double 是对象在图像内的归一化坐标。
如何从图像中获取这些坐标?有没有可以用来创建这些坐标并将它们添加到代码中的软件?