Skip to content

Commit b304d44

Browse files
committed
chore: rebuild
1 parent 443dc0a commit b304d44

File tree

2 files changed

+58
-42
lines changed

2 files changed

+58
-42
lines changed

IBM.Watson.sln

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,22 @@ Global
315315
{EBED7B56-15D3-472E-A758-6452415AA941}.Debug|Any CPU.Build.0 = Debug|Any CPU
316316
{EBED7B56-15D3-472E-A758-6452415AA941}.Release|Any CPU.ActiveCfg = Release|Any CPU
317317
{EBED7B56-15D3-472E-A758-6452415AA941}.Release|Any CPU.Build.0 = Release|Any CPU
318+
{DC0B8384-A8F4-49E0-9A72-57FF4AA124C3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
319+
{DC0B8384-A8F4-49E0-9A72-57FF4AA124C3}.Debug|Any CPU.Build.0 = Debug|Any CPU
320+
{DC0B8384-A8F4-49E0-9A72-57FF4AA124C3}.Release|Any CPU.ActiveCfg = Release|Any CPU
321+
{DC0B8384-A8F4-49E0-9A72-57FF4AA124C3}.Release|Any CPU.Build.0 = Release|Any CPU
322+
{86FC135E-3D1E-40FE-9BE6-1B0A72ACDC20}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
323+
{86FC135E-3D1E-40FE-9BE6-1B0A72ACDC20}.Debug|Any CPU.Build.0 = Debug|Any CPU
324+
{86FC135E-3D1E-40FE-9BE6-1B0A72ACDC20}.Release|Any CPU.ActiveCfg = Release|Any CPU
325+
{86FC135E-3D1E-40FE-9BE6-1B0A72ACDC20}.Release|Any CPU.Build.0 = Release|Any CPU
326+
{AF2B1FCA-118D-4ABA-B7B0-EFB6BBC7164F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
327+
{AF2B1FCA-118D-4ABA-B7B0-EFB6BBC7164F}.Debug|Any CPU.Build.0 = Debug|Any CPU
328+
{AF2B1FCA-118D-4ABA-B7B0-EFB6BBC7164F}.Release|Any CPU.ActiveCfg = Release|Any CPU
329+
{AF2B1FCA-118D-4ABA-B7B0-EFB6BBC7164F}.Release|Any CPU.Build.0 = Release|Any CPU
330+
{EAB0C966-76C7-4457-AAC4-383A298A5EAB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
331+
{EAB0C966-76C7-4457-AAC4-383A298A5EAB}.Debug|Any CPU.Build.0 = Debug|Any CPU
332+
{EAB0C966-76C7-4457-AAC4-383A298A5EAB}.Release|Any CPU.ActiveCfg = Release|Any CPU
333+
{EAB0C966-76C7-4457-AAC4-383A298A5EAB}.Release|Any CPU.Build.0 = Release|Any CPU
318334
EndGlobalSection
319335
GlobalSection(SolutionProperties) = preSolution
320336
HideSolutionNode = FALSE
Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
1-
/**
2-
* (C) Copyright IBM Corp. 2018, 2019.
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
6-
* You may obtain a copy of the License at
7-
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
15-
*
16-
*/
17-
18-
using System.Collections.Generic;
19-
using IBM.Cloud.SDK.Core.Model;
20-
using IBM.Cloud.SDK.Core.Http;
21-
using IBM.Watson.VisualRecognition.v4.Model;
22-
23-
namespace IBM.Watson.VisualRecognition.v4
24-
{
25-
public partial interface IVisualRecognitionService
26-
{
27-
DetailedResponse<AnalyzeResponse> Analyze(string collectionIds, string features, List<FileWithMetadata> imagesFile = null, List<string> imageUrl = null, float? threshold = null);
28-
DetailedResponse<Collection> CreateCollection(string name = null, string description = null);
29-
DetailedResponse<CollectionsList> ListCollections();
30-
DetailedResponse<Collection> GetCollection(string collectionId);
31-
DetailedResponse<Collection> UpdateCollection(string collectionId, string name = null, string description = null);
32-
DetailedResponse<object> DeleteCollection(string collectionId);
33-
DetailedResponse<ImageDetailsList> AddImages(string collectionId, List<FileWithMetadata> imagesFile = null, List<string> imageUrl = null, string trainingData = null);
34-
DetailedResponse<ImageSummaryList> ListImages(string collectionId);
35-
DetailedResponse<ImageDetails> GetImageDetails(string collectionId, string imageId);
36-
DetailedResponse<object> DeleteImage(string collectionId, string imageId);
37-
DetailedResponse<System.IO.MemoryStream> GetJpegImage(string collectionId, string imageId, string size = null);
38-
DetailedResponse<Collection> Train(string collectionId);
39-
DetailedResponse<TrainingDataObjects> AddImageTrainingData(string collectionId, string imageId, List<BaseObject> objects = null);
40-
DetailedResponse<object> DeleteUserData(string customerId);
41-
}
42-
}
1+
/**
2+
* (C) Copyright IBM Corp. 2018, 2019.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*
16+
*/
17+
18+
using System.Collections.Generic;
19+
using IBM.Cloud.SDK.Core.Model;
20+
using IBM.Cloud.SDK.Core.Http;
21+
using IBM.Watson.VisualRecognition.v4.Model;
22+
23+
namespace IBM.Watson.VisualRecognition.v4
24+
{
25+
public partial interface IVisualRecognitionService
26+
{
27+
DetailedResponse<AnalyzeResponse> Analyze(string collectionIds, string features, List<FileWithMetadata> imagesFile = null, List<string> imageUrl = null, float? threshold = null);
28+
DetailedResponse<Collection> CreateCollection(string name = null, string description = null);
29+
DetailedResponse<CollectionsList> ListCollections();
30+
DetailedResponse<Collection> GetCollection(string collectionId);
31+
DetailedResponse<Collection> UpdateCollection(string collectionId, string name = null, string description = null);
32+
DetailedResponse<object> DeleteCollection(string collectionId);
33+
DetailedResponse<ImageDetailsList> AddImages(string collectionId, List<FileWithMetadata> imagesFile = null, List<string> imageUrl = null, string trainingData = null);
34+
DetailedResponse<ImageSummaryList> ListImages(string collectionId);
35+
DetailedResponse<ImageDetails> GetImageDetails(string collectionId, string imageId);
36+
DetailedResponse<object> DeleteImage(string collectionId, string imageId);
37+
DetailedResponse<System.IO.MemoryStream> GetJpegImage(string collectionId, string imageId, string size = null);
38+
DetailedResponse<Collection> Train(string collectionId);
39+
DetailedResponse<TrainingDataObjects> AddImageTrainingData(string collectionId, string imageId, List<BaseObject> objects = null);
40+
DetailedResponse<object> DeleteUserData(string customerId);
41+
}
42+
}

0 commit comments

Comments
 (0)