Replace http https

This commit is contained in:
Christian Tzolov
2020-06-25 18:29:17 +02:00
parent 2113451a6e
commit f470152810
10 changed files with 23 additions and 23 deletions

View File

@@ -36,7 +36,7 @@ public class SemanticSegmentationProcessorProperties {
/**
* pre-trained tensorflow semantic segmentation model.
*/
private String model = "http://download.tensorflow.org/models/deeplabv3_mnv2_cityscapes_train_2018_02_05.tar.gz#frozen_inference_graph.pb";
private String model = "https://download.tensorflow.org/models/deeplabv3_mnv2_cityscapes_train_2018_02_05.tar.gz#frozen_inference_graph.pb";
/**
* Specifies the output image type. You can return either the input image with the computed mask overlay, or

View File

@@ -45,7 +45,7 @@ public class SemanticSegmentationProcessorTests {
TestChannelBinderConfiguration.getCompleteConfiguration(SemanticSegmentationTestApplication.class))
.web(WebApplicationType.NONE)
.run("--spring.cloud.function.definition=semanticSegmentationFunction",
"--semantic.segmentation.model=http://download.tensorflow.org/models/deeplabv3_mnv2_cityscapes_train_2018_02_05.tar.gz#frozen_inference_graph.pb",
"--semantic.segmentation.model=https://download.tensorflow.org/models/deeplabv3_mnv2_cityscapes_train_2018_02_05.tar.gz#frozen_inference_graph.pb",
"--semantic.segmentation.colorMapUri=classpath:/colormap/citymap_colormap.json",
"--semantic.segmentation.outputType=blended",
"--semantic.segmentation.debugOutput=true",