Skip to content

Commit

Permalink
Passing correct value in metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
yashrajsapra authored and kumaakh committed Nov 12, 2022
1 parent 7ebaefb commit 9a931e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/test/nvtransform_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ BOOST_AUTO_TEST_CASE(cropAndScale, *boost::unit_test::disabled())

float scaleHeight = 1;
float scaleWidth = 0.5;
auto nv_transform = boost::shared_ptr<Module>(new NvTransform(NvTransformProps(ImageMetadata::RGBA, 400, 400, scaleHeight, scaleWidth, NvTransformProps::NvTransformFilter::BILINEAR)));
auto nv_transform = boost::shared_ptr<Module>(new NvTransform(NvTransformProps(ImageMetadata::RGBA, 400, 400, scaleWidth, scaleHeight, NvTransformProps::NvTransformFilter::BILINEAR)));
source->setNext(nv_transform);

PipeLine p("test");
Expand Down

0 comments on commit 9a931e6

Please sign in to comment.