/external/opencv3/modules/java/src/ |
ml+EM.java | 156 // C++: bool trainEM(Mat samples, Mat& logLikelihoods = Mat(), Mat& labels = Mat(), Mat& probs = Mat()) 159 //javadoc: EM::trainEM(samples, logLikelihoods, labels, probs) 160 public boolean trainEM(Mat samples, Mat logLikelihoods, Mat labels, Mat probs) 163 boolean retVal = trainEM_0(nativeObj, samples.nativeObj, logLikelihoods.nativeObj, labels.nativeObj, probs.nativeObj); 179 // C++: bool trainE(Mat samples, Mat means0, Mat covs0 = Mat(), Mat weights0 = Mat(), Mat& logLikelihoods = Mat(), Mat& labels = Mat(), Mat& probs = Mat()) 182 //javadoc: EM::trainE(samples, means0, covs0, weights0, logLikelihoods, labels, probs) 183 public boolean trainE(Mat samples, Mat means0, Mat covs0, Mat weights0, Mat logLikelihoods, Mat labels, Mat probs) 186 boolean retVal = trainE_0(nativeObj, samples.nativeObj, means0.nativeObj, covs0.nativeObj, weights0.nativeObj, logLikelihoods.nativeObj, labels.nativeObj, probs.nativeObj); 202 // C++: bool trainM(Mat samples, Mat probs0, Mat& logLikelihoods = Mat(), Mat& labels = Mat(), Mat& probs = Mat()) 205 //javadoc: EM::trainM(samples, probs0, logLikelihoods, labels, probs [all...] |
/external/opencv3/samples/cpp/ |
distrans.cpp | 38 Mat edge = gray >= edgeThresh, dist, labels, dist8u; local 43 distanceTransform( edge, dist, labels, distType, maskSize, voronoiType ); 67 dist8u.create(labels.size(), CV_8UC3); 68 for( int i = 0; i < labels.rows; i++ ) 70 const int* ll = (const int*)labels.ptr(i); 73 for( int j = 0; j < labels.cols; j++ )
|
logistic_regression.cpp | 94 Mat data, labels; local 101 f["labelsmat"] >> labels; local 110 labels.convertTo(labels, CV_32F); 121 labels_train.push_back(labels.row(i)); 126 labels_test.push_back(labels.row(i));
|
em.cpp | 21 Mat labels; local 43 em_model->trainEM( samples, noArray(), labels, noArray() ); 63 circle( img, pt, 1, colors[labels.at<int>(i)], FILLED );
|
/frameworks/base/core/tests/coretests/src/android/os/ |
PerformanceCollectorTest.java | 95 ArrayList<String> labels = new ArrayList<String>(); local 96 labels.add("timing2"); 97 labels.add("timing3"); 98 labels.add("timing4"); 99 verifyTimingBundle(timing, labels); 162 ArrayList<String> labels = new ArrayList<String>(); local 163 labels.add("timing6"); 164 labels.add("timing7"); 165 labels.add("timing8"); 166 verifyTimingBundle(timing, labels); 255 ArrayList<String> labels = new ArrayList<String>(); local 369 ArrayList<String> labels = new ArrayList<String>(); local [all...] |
/external/autotest/frontend/client/src/autotest/afe/ |
HostDataSource.java | 48 JSONArray labels = host.get("labels").isArray(); local 50 for (int i = 0; i < labels.size(); i++) { 51 String label = labels.get(i).isString().stringValue();
|
/external/autotest/site_utils/suite_scheduler/ |
board_enumerator_unittest.py | 16 from constants import Labels 27 self.prefix = Labels.BOARD_PREFIX 39 labels = ['board1', 'board2', 'board3'] 41 map(lambda p: self._CreateMockLabel(self.prefix+p), labels)) 43 self.assertEquals(labels, self.enumerator.Enumerate())
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/ |
labels.s | 1 * local labels 3 * Local labels are undefined/reset in one of four ways: 26 .copy labels.inc 48 * Newblock directive clears local labels
|
/bionic/tools/bionicbb/ |
tasks.py | 94 labels = gmail_service.users().labels().list(userId='me').execute() 95 if not labels['labels']: 96 logging.error('Could not retrieve Gmail labels') 98 label_id = gmail.get_gerrit_label(labels['labels'])
|
gmail.py | 53 def get_gerrit_label(labels): 54 for label in labels:
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/ |
sigbase.py | 51 @ivar labels: number of labels 52 @type labels: int 66 __slots__ = ['type_covered', 'algorithm', 'labels', 'original_ttl', 70 def __init__(self, rdclass, rdtype, type_covered, algorithm, labels, 76 self.labels = labels 91 self.labels, 103 labels = tok.get_int() 120 return cls(rdclass, rdtype, type_covered, algorithm, labels, [all...] |
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/ |
DuplicateFrameEliminator.java | 108 final Label dflt, final Label... labels) { 110 mv.visitTableSwitchInsn(min, max, dflt, labels); 115 final Label[] labels) { 117 mv.visitLookupSwitchInsn(dflt, keys, labels);
|
/external/libvpx/libvpx/tools/ |
vpx-astyle.sh | 7 --indent-preprocessor --convert-tabs --indent-labels \
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
MethodAdapter.java | 147 final Label[] labels)
149 mv.visitTableSwitchInsn(min, max, dflt, labels);
155 final Label[] labels)
157 mv.visitLookupSwitchInsn(dflt, keys, labels);
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/ |
IincInsnNode.java | 74 public AbstractInsnNode clone(final Map labels) {
|
MultiANewArrayInsnNode.java | 74 public AbstractInsnNode clone(final Map labels) {
|
TypeInsnNode.java | 81 public AbstractInsnNode clone(final Map labels) {
|
/external/opencv3/modules/core/perf/ |
perf_math.cpp | 37 Mat labels, centers; local 55 kmeans(data, K, labels, TermCriteria(TermCriteria::MAX_ITER+TermCriteria::EPS, 30, 0), 61 for( i = 0; i < labels.rows; i++ ) 63 int clusterIdx = labels.at<int>(i);
|
/external/opencv3/modules/cudalegacy/src/ |
graphcuts.cpp | 145 void cv::cuda::graphcut(GpuMat& terminals, GpuMat& leftTransp, GpuMat& rightTransp, GpuMat& top, GpuMat& bottom, GpuMat& labels, GpuMat& buf, Stream& s) 167 labels.create(src_size, CV_8U); 186 static_cast<int>(terminals.step), static_cast<int>(leftTransp.step), sznpp, labels.ptr<Npp8u>(), static_cast<int>(labels.step), state) ); 191 static_cast<int>(terminals.step), static_cast<int>(leftTransp.step), sznpp, labels.ptr<Npp8u>(), static_cast<int>(labels.step), state) ); 196 static_cast<int>(terminals.step), static_cast<int>(leftTransp.step), sznpp, labels.ptr<Npp8u>(), static_cast<int>(labels.step), state) ); 205 GpuMat& bottom, GpuMat& bottomLeft, GpuMat& bottomRight, GpuMat& labels, GpuMat& buf, Stream& s) 239 labels.create(src_size, CV_8U) [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/ |
MethodLocation.java | 51 // the labels and debugItems lists only when they are needed 54 private List<Label> labels = null; field in class:MethodLocation 79 if (labels == null) { 81 labels = new ArrayList<Label>(1); 82 return labels; 86 return labels; 102 if (this.labels != null || other.labels != null) { 108 this.labels = null; 111 if (this.debugItems != null || other.labels != null) [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/ |
vpx-astyle.sh | 7 --indent-preprocessor --convert-tabs --indent-labels \
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug128.go | 21 bug127.go:5: switch statement must have case labels 22 bug127.go:9: switch statement must have case labels
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug128.go | 21 bug127.go:5: switch statement must have case labels 22 bug127.go:9: switch statement must have case labels
|
/external/autotest/cli/ |
host.py | 73 def _cleanup_labels(self, labels, platform=None): 74 """Removes the platform label from the overall labels""" 76 return [label for label in labels 80 return [label for label in labels 85 return labels 107 help='Only list hosts with all these labels ' 135 label_info = topic_common.item_parse_info(attribute_name='labels', 160 if self.labels: 161 if len(self.labels) == 1: 162 # This is needed for labels with wildcards (x86* [all...] |
/external/opencv3/modules/ml/src/ |
lr.cpp | 148 CV_Error( CV_StsBadArg, "data and labels must be a floating point matrix" ); 153 Mat labels; local 174 CV_Error( CV_StsBadArg, "number of rows in data and labels should be the equal" ); 189 labels_l.convertTo(labels, CV_32F); 191 new_theta = compute_batch_gradient(data_t, labels, init_theta); 193 new_theta = compute_mini_batch_gradient(data_t, labels, init_theta); 205 new_local_labels.convertTo(labels, CV_32F); 207 new_theta = compute_batch_gradient(data_t, labels, init_theta); 209 new_theta = compute_mini_batch_gradient(data_t, labels, init_theta); 263 Mat labels; local 520 Mat labels; local 550 Mat labels; local [all...] |