Browse Source

rename dataset dir and image files

change references to use path original

revert folder name

revert graphengine
tags/v1.0.0
tony_liu2 5 years ago
parent
commit
5e4c314130
15 changed files with 8 additions and 8 deletions
  1. +1
    -1
      tests/ut/cpp/dataset/bounding_box_augment_op_test.cc
  2. +1
    -1
      tests/ut/cpp/dataset/common/bboxop_common.cc
  3. +1
    -1
      tests/ut/cpp/dataset/random_crop_and_resize_with_bbox_op_test.cc
  4. +1
    -1
      tests/ut/cpp/dataset/random_crop_with_bbox_op_test.cc
  5. +1
    -1
      tests/ut/cpp/dataset/random_horizontal_flip_with_bbox_test.cc
  6. +1
    -1
      tests/ut/cpp/dataset/random_resize_with_bbox_op_test.cc
  7. +1
    -1
      tests/ut/cpp/dataset/random_vertical_flip_with_bbox_op_test.cc
  8. +1
    -1
      tests/ut/cpp/dataset/resize_with_bbox_op_test.cc
  9. +0
    -0
      tests/ut/data/dataset/imagefolder/apple_expect_bounding_box_augment_op0.jpg
  10. +0
    -0
      tests/ut/data/dataset/imagefolder/apple_expect_random_crop_with_bbox_c0.jpg
  11. +0
    -0
      tests/ut/data/dataset/imagefolder/apple_expect_random_horizontal_flip_with_bbox_c0.jpg
  12. +0
    -0
      tests/ut/data/dataset/imagefolder/apple_expect_random_resize_with_bbox_c0.jpg
  13. +0
    -0
      tests/ut/data/dataset/imagefolder/apple_expect_random_resized_crop_with_bbox_c0.jpg
  14. +0
    -0
      tests/ut/data/dataset/imagefolder/apple_expect_random_vertical_flip_with_bbox_c0.jpg
  15. +0
    -0
      tests/ut/data/dataset/imagefolder/apple_expect_resize_with_bbox_c0.jpg

+ 1
- 1
tests/ut/cpp/dataset/bounding_box_augment_op_test.cc View File

@@ -24,7 +24,7 @@ using mindspore::ExceptionType::NoExceptionType;
using mindspore::MsLogLevel::INFO;

const bool kSaveExpected = false;
const char kOpName[] = "BoundingBoxAugmentOp";
const char kOpName[] = "bounding_box_augment_op";

class MindDataTestBoundingBoxAugmentOp : public UT::CVOP::BBOXOP::BBoxOpCommon {
protected:


+ 1
- 1
tests/ut/cpp/dataset/common/bboxop_common.cc View File

@@ -39,7 +39,7 @@ using tinyxml2::XMLError;

const char kAnnotationsFolder[] = "/Annotations/";
const char kImagesFolder[] = "/JPEGImages/";
const char kExpectedName[] = "Expected";
const char kExpectedName[] = "apple_expect_";
const char kActualName[] = "Actual";
const char kAnnotExt[] = ".xml";
const char kImageExt[] = ".jpg";


+ 1
- 1
tests/ut/cpp/dataset/random_crop_and_resize_with_bbox_op_test.cc View File

@@ -26,7 +26,7 @@ using mindspore::ExceptionType::NoExceptionType;
using mindspore::MsLogLevel::INFO;

const bool kSaveExpected = false;
const char kOpName[] = "RandomResizedCropWithBBox_C";
const char kOpName[] = "random_resized_crop_with_bbox_c";

class MindDataTestRandomCropAndResizeWithBBoxOp : public UT::CVOP::BBOXOP::BBoxOpCommon {
protected:


+ 1
- 1
tests/ut/cpp/dataset/random_crop_with_bbox_op_test.cc View File

@@ -27,7 +27,7 @@ using mindspore::ExceptionType::NoExceptionType;
using mindspore::MsLogLevel::INFO;

const bool kSaveExpected = false;
const char kOpName[] = "RandomCropWithBBox_C";
const char kOpName[] = "random_crop_with_bbox_c";

class MindDataTestRandomCropWithBBoxOp : public UT::CVOP::BBOXOP::BBoxOpCommon {
protected:


+ 1
- 1
tests/ut/cpp/dataset/random_horizontal_flip_with_bbox_test.cc View File

@@ -23,7 +23,7 @@ using mindspore::ExceptionType::NoExceptionType;
using mindspore::LogStream;

const bool kSaveExpected = false;
const char kOpName[] = "RandomHorizontalFlipWithBBox";
const char kOpName[] = "random_horizontal_flip_with_bbox_c";

class MindDataTestRandomHorizontalFlipWithBBoxOp : public UT::CVOP::BBOXOP::BBoxOpCommon {
protected:


+ 1
- 1
tests/ut/cpp/dataset/random_resize_with_bbox_op_test.cc View File

@@ -27,7 +27,7 @@ using mindspore::ExceptionType::NoExceptionType;
using mindspore::MsLogLevel::INFO;

const bool kSaveExpected = false;
const char kOpName[] = "RandomResizeWithBBox_C";
const char kOpName[] = "random_resize_with_bbox_c";

class MindDataTestRandomResizeWithBBoxOp : public UT::CVOP::BBOXOP::BBoxOpCommon {
protected:


+ 1
- 1
tests/ut/cpp/dataset/random_vertical_flip_with_bbox_op_test.cc View File

@@ -24,7 +24,7 @@ using mindspore::ExceptionType::NoExceptionType;
using mindspore::MsLogLevel::INFO;

const bool kSaveExpected = false;
const char kOpName[] = "RandomVerticalFlipWithBBox_C";
const char kOpName[] = "random_vertical_flip_with_bbox_c";

class MindDataTestRandomVerticalFlipWithBBoxOp : public UT::CVOP::BBOXOP::BBoxOpCommon {
protected:


+ 1
- 1
tests/ut/cpp/dataset/resize_with_bbox_op_test.cc View File

@@ -24,7 +24,7 @@ using mindspore::ExceptionType::NoExceptionType;
using mindspore::MsLogLevel::INFO;

const bool kSaveExpected = false;
const char kOpName[] = "ResizeWithBBox_C";
const char kOpName[] = "resize_with_bbox_c";

class MindDataTestResizeWithBBoxOp : public UT::CVOP::BBOXOP::BBoxOpCommon {
protected:


tests/ut/data/dataset/imagefolder/ExpectedBoundingBoxAugmentOp0.jpg → tests/ut/data/dataset/imagefolder/apple_expect_bounding_box_augment_op0.jpg View File


tests/ut/data/dataset/imagefolder/ExpectedRandomCropWithBBox_C0.jpg → tests/ut/data/dataset/imagefolder/apple_expect_random_crop_with_bbox_c0.jpg View File


tests/ut/data/dataset/imagefolder/ExpectedRandomHorizontalFlipWithBBox0.jpg → tests/ut/data/dataset/imagefolder/apple_expect_random_horizontal_flip_with_bbox_c0.jpg View File


tests/ut/data/dataset/imagefolder/ExpectedRandomResizeWithBBox_C0.jpg → tests/ut/data/dataset/imagefolder/apple_expect_random_resize_with_bbox_c0.jpg View File


tests/ut/data/dataset/imagefolder/ExpectedRandomResizedCropWithBBox_C0.jpg → tests/ut/data/dataset/imagefolder/apple_expect_random_resized_crop_with_bbox_c0.jpg View File


tests/ut/data/dataset/imagefolder/ExpectedRandomVerticalFlipWithBBox_C0.jpg → tests/ut/data/dataset/imagefolder/apple_expect_random_vertical_flip_with_bbox_c0.jpg View File


tests/ut/data/dataset/imagefolder/ExpectedResizeWithBBox_C0.jpg → tests/ut/data/dataset/imagefolder/apple_expect_resize_with_bbox_c0.jpg View File


Loading…
Cancel
Save