HomeSort by relevance Sort by last modified time
    Searched defs:Model (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
Model.cpp 2 * Model.cpp
8 #include "Model.h"
11 Model::Model() : list_points2d_in_(0), list_points2d_out_(0), list_points3d_in_(0)
16 Model::~Model()
21 void Model::add_correspondence(const cv::Point2f &point2d, const cv::Point3f &point3d)
28 void Model::add_outlier(const cv::Point2f &point2d)
33 void Model::add_descriptor(const cv::Mat &descriptor)
38 void Model::add_keypoint(const cv::KeyPoint &kp
    [all...]
Model.h 2 * Model.h
15 class Model
18 Model();
19 virtual ~Model();
42 /** The list of 2D points on the model surface */
44 /** The list of 2D points on the model surface */
46 /** The list of 2D points outside the model surface */
48 /** The list of 3D points on the model surface */
  /external/libvorbis/doc/
03-codebook.tex 4 \section{Probability Model and Codebooks} \label{vorbis:spec:codebook}
9 statically configured probability model, instead packing all entropy
  /external/llvm/lib/Target/AArch64/
AArch64MCInstLower.cpp 86 TLSModel::Model Model;
89 Model = Printer.TM.getTLSModel(GV);
91 Model == TLSModel::LocalDynamic)
92 Model = TLSModel::GeneralDynamic;
100 Model = TLSModel::GeneralDynamic;
102 switch (Model) {
  /external/llvm/lib/Target/
TargetMachine.cpp 75 /// getRelocationModel - Returns the code generation relocation model. The
77 Reloc::Model TargetMachine::getRelocationModel() const {
83 /// getCodeModel - Returns the code model. The choices are small, kernel,
85 CodeModel::Model TargetMachine::getCodeModel() const {
91 /// Get the IR-specified TLS model for Var.
92 static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV) {
106 llvm_unreachable("invalid TLS model");
109 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const {
118 TLSModel::Model Model;
    [all...]
  /external/chromium-trace/catapult/third_party/apiclient/googleapiclient/
model.py 15 """Model objects for requests and responses.
18 as JSON, Atom, etc. The model classes are responsible
43 class Model(object):
44 """Model base class.
46 All Model classes should implement this interface.
47 The Model serializes and de-serializes between a wire
86 class BaseModel(Model):
87 """Base model class.
237 """Model class for JSON.
276 """Model class for requests that don't return JSON
    [all...]
  /external/llvm/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
23 // Relocation model types.
25 enum Model { Default, Static, PIC_, DynamicNoPIC };
28 // Code model types.
30 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
39 enum Model {
58 inline CodeModel::Model unwrap(LLVMCodeModel Model) {
59 switch (Model) {
76 inline LLVMCodeModel wrap(CodeModel::Model Model)
    [all...]
  /external/opencv3/samples/python2/
letter_recog.py 21 letter_recog.py [--model <model>]
23 [--load <model fn>] [--save <model fn>]
41 self.model.load(fn)
43 self.model.save(fn)
61 self.model = cv2.RTrees()
68 self.model.train(samples, cv2.CV_ROW_SAMPLE, responses, varType = var_types, params = params)
71 return np.float32( [self.model.predict(s) for s in samples] )
76 self.model = cv2.KNearest(
161 model = Model() variable
    [all...]
  /external/testng/src/main/java/org/testng/mustache/
Model.java 7 public class Model {
15 public Model(Map<String, Object> model) {
16 m_model = model;
81 return "[Model " + m_model + " subModel:" + m_subModels + "]";
  /frameworks/av/services/soundtrigger/
SoundTriggerHwService.h 63 class Model : public RefBase {
71 Model(sound_model_handle_t handle, audio_session_t session, audio_io_handle_t ioHandle,
73 ~Model() {}
135 sp<Model> getModel(sound_model_handle_t handle);
152 DefaultKeyedVector< sound_model_handle_t, sp<Model> > mModels;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
model.py 33 # Make sure this is a subclass of Model - mainly copied from django ModelBase (thanks!)
40 if filter(lambda b: issubclass(b, Model), bases):
56 # 'Model' isn't defined yet, meaning we're looking at our own
57 # Model class, defined below.
60 class Model(object):
180 return other and isinstance(other, Model) and self.id == other.id
204 :rtype: :class:`boto.sdb.db.model.Model`
218 :rtype: :class:`boto.sdb.db.model.Model`
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/
ModelInfluencer.java 5 import com.badlogic.gdx.graphics.g3d.Model;
14 /** It's an {@link Influencer} which controls which {@link Model} will be assigned
19 /** Assigns the first model of {@link ModelInfluencer#models} to the particles.*/
30 public Single (Model...models) {
36 Model first = models.first();
48 /** Assigns a random model of {@link ModelInfluencer#models} to the particles.*/
70 public Random (Model...models) {
100 public Array<Model> models;
104 this.models = new Array<Model>(true, 1, Model.class)
132 Model model = (Model)manager.get(descriptor); local
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/values/
MeshSpawnShapeValue.java 7 import com.badlogic.gdx.graphics.g3d.Model;
47 /** the model this mesh belongs to.
50 protected Model model; field in class:MeshSpawnShapeValue
62 setMesh(spawnShapeValue.mesh, spawnShapeValue.model);
65 public void setMesh(Mesh mesh, Model model){
68 this.model = model;
78 if(model != null)
90 Model model = (Model) manager.get(descriptor); local
91 setMesh(model.meshes.get((Integer)saveData.load("index")), model); local
    [all...]
  /external/llvm/include/llvm/Target/
TargetOptions.h 55 enum Model {
179 /// relocation model being in use. It's value is undefined (and irrelevant)
180 /// if the relocation model is anything other than PIC.
204 /// EmulatedTLS - This flag enables emulated TLS model, using emutls
241 /// ThreadModel - This flag specifies the type of threading model to assume
243 ThreadModel::Model ThreadModel;
  /frameworks/base/media/java/android/media/soundtrigger/
SoundTriggerManager.java 49 // Stores a mapping from the sound model UUID to the SoundTriggerInstance created by
66 * Updates the given sound trigger model.
68 public void updateModel(Model model) {
70 mSoundTriggerService.updateSoundModel(model.getGenericSoundModel());
77 * Returns the sound trigger model represented by the given UUID. An instance of {@link Model}
80 public Model getModel(UUID soundModelId) {
82 return new Model(mSoundTriggerService.getSoundModel(
90 * Deletes the sound model represented by the provided UUID
    [all...]
  /prebuilts/go/darwin-x86/src/image/color/
color.go 140 // Model can convert any Color to one from its own color model. The conversion
142 type Model interface {
146 // ModelFunc returns a Model that invokes f to implement the conversion.
147 func ModelFunc(f func(Color) Color) Model {
166 RGBAModel Model = ModelFunc(rgbaModel)
167 RGBA64Model Model = ModelFunc(rgba64Model)
168 NRGBAModel Model = ModelFunc(nrgbaModel)
169 NRGBA64Model Model = ModelFunc(nrgba64Model)
170 AlphaModel Model = ModelFunc(alphaModel
    [all...]
  /prebuilts/go/linux-x86/src/image/color/
color.go 140 // Model can convert any Color to one from its own color model. The conversion
142 type Model interface {
146 // ModelFunc returns a Model that invokes f to implement the conversion.
147 func ModelFunc(f func(Color) Color) Model {
166 RGBAModel Model = ModelFunc(rgbaModel)
167 RGBA64Model Model = ModelFunc(rgba64Model)
168 NRGBAModel Model = ModelFunc(nrgbaModel)
169 NRGBA64Model Model = ModelFunc(nrgba64Model)
170 AlphaModel Model = ModelFunc(alphaModel
    [all...]
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 540 /// \brief The template model for the base class which wraps a concrete
542 template <typename T> class Model;
640 class TargetTransformInfo::Model final : public TargetTransformInfo::Concept {
644 Model(T Impl) : Impl(std::move(Impl)) {}
645 ~Model() override {}
    [all...]
AliasAnalysis.h 174 AAs.emplace_back(new Model<AAResultT>(AAResult, *this));
556 template <typename T> class Model;
570 /// This interface is implemented by any \c Model instantiation. It is also the
571 /// interface which a type used to instantiate the model must provide.
573 /// All of these methods model methods by the same name in the \c
639 template <typename AAResultT> class AAResults::Model final : public Concept {
643 explicit Model(AAResultT &Result, AAResults &AAR) : Result(Result) {
646 ~Model() override {}
697 // Expose some parts of the interface only to the AAResults::Model
698 // for wrapping. Specifically, this allows the model to call ou
    [all...]
  /external/vulkan-validation-layers/libs/glm/detail/
dummy.cpp 95 glm::mat4 Model = glm::scale(glm::mat4(1.0f), glm::vec3(0.5f));
96 glm::mat4 MVP = Projection * View * Model;
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/java/android/bordeaux/learning/
StochasticLinearRanker.java 41 static public class Model implements Serializable {
84 * Get the current model and parameters of ranker
86 public Model getUModel(){
87 Model slrModel = new Model();
106 * load the given model and parameters to the ranker
108 public boolean loadModel(Model model) {
109 String[] wKeys = new String[model.weights.size()];
110 float[] wValues = new float[model.weights.size()]
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
StochasticLinearRankerWithPrior.java 30 linear combination of user model and prior model */
33 /* When prior model is used, this parmaeter will set the mixing factor, alpha. */
36 /* When prior model is used, If this parameter is true then algorithm will use
37 the automatic cross validated alpha for mixing user model and prior model */
45 set the minium number of required training pairs before using the user model */
66 static public class Model implements Serializable {
67 public StochasticLinearRanker.Model uModel = new StochasticLinearRanker.Model();
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 292 SmallString<128> Model, ResultPath;
295 llvm::sys::path::append(Model, Directory, "report-%%%%%%.html");
297 llvm::sys::fs::make_absolute(Model)) {
298 llvm::errs() << "warning: could not make '" << Model
303 llvm::sys::fs::createUniqueFile(Model, FD, ResultPath)) {
315 Model = "";
321 llvm::sys::path::append(Model, Directory,
323 EC = llvm::sys::fs::openFileForWrite(Model,
328 llvm::errs() << "warning: could not create file '" << Model
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
Model.java 28 import com.badlogic.gdx.graphics.g3d.model.Animation;
29 import com.badlogic.gdx.graphics.g3d.model.MeshPart;
30 import com.badlogic.gdx.graphics.g3d.model.Node;
31 import com.badlogic.gdx.graphics.g3d.model.NodeAnimation;
32 import com.badlogic.gdx.graphics.g3d.model.NodeKeyframe;
33 import com.badlogic.gdx.graphics.g3d.model.NodePart;
34 import com.badlogic.gdx.graphics.g3d.model.data.ModelAnimation;
35 import com.badlogic.gdx.graphics.g3d.model.data.ModelData;
36 import com.badlogic.gdx.graphics.g3d.model.data.ModelMaterial;
37 import com.badlogic.gdx.graphics.g3d.model.data.ModelMesh;
    [all...]
  /external/llvm/lib/Support/
Host.cpp 203 unsigned &Model) {
205 Model = (EAX >> 4) & 0xf; // Bits 4 - 7
210 // Examine extended model ID if family ID is 6 or F.
211 Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19
220 unsigned Model = 0;
221 DetectX86FamilyModel(EAX, Family, Model);
261 switch (Model) {
274 switch (Model) {
292 switch (Model) {
297 // model 0
    [all...]

Completed in 664 milliseconds

1 2 3