Answered
wavelet波形を3次元にする際,X軸を時間に変更する方法を教えてください。
X軸の表示を時間にしたいということでしょうか。 表示だけであれば |mesh| に軸のラベルデータを指定することで実現できます。 mesh(time,fa,abs(CWTcoeffs));

9 years ago | 1

| accepted

Answered
特異値分解を利用した点群レジストレーションについて
以前、お答えした内容のデモで特異値分解(SVD)を利用して位置計算をしています。 <https://jp.mathworks.com/matlabcentral/answers/341509-> |findRtFromRGBD.m| の内容をご...

9 years ago | 2

| accepted

Answered
画像ファイルの次元数の拡張
<https://jp.mathworks.com/help/matlab/ref/repmat.html |repmat|> を使うと2次元から3次元への拡張が容易に行えます。ご参考まで。 <</matlabcentral/answers/uplo...

9 years ago | 1

| accepted

Answered
dsp.SpectrumEstimatorを使用して得られた結果をリアルタイムで順次保存するにはどうすればよいか。
"リアルタイムでファイルに順次保存"とありますが、どのような形式で保存したいのでしょうか。 たとえば、MAT-fileで保存するということであれば、 |dsp.MatFileWriter| が使用できます。 |dsp.MatFileWriter...

9 years ago | 1

| accepted

Answered
リアルタイムで取り込んだ信号をある時間窓で周期的に切り出し,FFT処理した結果を順次保存する方法を教えてください。
|dsp.SpectrumAnalyzer| System objectでは処理結果を保存することはできません。 一方、 <https://jp.mathworks.com/help/dsp/ref/dsp.spectrumestimator-cla...

9 years ago | 2

| accepted

Answered
How to access gopro live streaming using image acquisition tool through WiFi
<http://jp.mathworks.com/help/supportpkg/ipcamera/ug/connect-to-ip-cameras.html#butdj6y ipcam function> would be helpful to acqu...

9 years ago | 0

| accepted

Answered
ビデオファイルにオーディオデータ(音声)を付けて保存する方法
|VideoWriter| では音声を一緒に書き込むことはできません。 Computer Vision System Toolboxの <https://jp.mathworks.com/help/vision/ref/vision.videofil...

9 years ago | 2

| accepted

Answered
点群データどうしの重ね合わせについて
画像上で点群XYZの対応点が既知ということでしたら <https://jp.mathworks.com/matlabcentral/fileexchange/55990-demo-files-for--robotic-vision-solutions-wi...

9 years ago | 3

| accepted

Answered
Plot3を用いた3次元点群の連続表示方法について
Michioさんのご指摘のとおりご自身で試したことを提示いただけるとヘルプが多く得られる可能性があります。 |permute| で行列の次元を入れ替えて、 |reshape| でN x 3の形式に変更しています。 詳細はそれぞれのヘルプなどをご...

9 years ago | 2

| accepted

Answered
ビデオファイルを分割保存する方法
ご質問いただく場合にはご自身で試されたことなども含めてご投稿いただけるとより適切なアドバイスが受けられる可能性があります。 参考: <https://jp.mathworks.com/matlabcentral/answers/309720-tuto...

9 years ago | 4

| accepted

Answered
反射強度画像同士のSURFを用いた対応点検出
画像として保存した際にすべての値が255になってしまうということですが、こちらは |imwrite| が画像書き出しする際に強制的に |uint8| 型に変換をしているからになります。一度、 |mat2gray| などでデータのレンジを0~1の範囲に圧縮す...

9 years ago | 3

| accepted

Answered
error in storing HOG feature
|extractHOGFeatures| returns different sized features based on the image size. So you will need to resize images to the same ima...

9 years ago | 0

| accepted

Answered
Computer Vision System Toolboxの機械学習
車の検出についてはR2017aで入った領域ベースの畳み込みニューラルネットワーク (Faster R-CNN)が便利です。 詳細は <https://www.mathworks.com/help/releases/R2017a/vision/ref/...

9 years ago | 1

| accepted

Answered
3d plot simple surf error
You need to change surf(xx,yy,f); to surf(xx(:,:,1),yy(:,:,1),f(:,:,1)); because <https://www.mathworks.com/help...

9 years ago | 0

| accepted

Answered
Simulink model to Arduino code?
Yes, you can generate C code for Arduino through <https://jp.mathworks.com/matlabcentral/fileexchange/40312-simulink-support-pac...

9 years ago | 1

| accepted

Answered
3次元の曲面上にコンターを描画する方法を探しています
曲面上に等高線を表示するには |contour3| がお使いいただけます。 下記の回答も参考になりそうです。 <https://jp.mathworks.com/matlabcentral/answers/165821-how-do-i-plo...

9 years ago | 1

Answered
Chartを入れると正常に動作しない
|Buck| ステート内のコードを en: out1=in1; から du: out1=in1; に変更してみてください。 |en| は |entry| すなわちステートがアクティブになった時に一度だけ実行されます。し...

9 years ago | 2

| accepted

Answered
シミュレーションのインプットパラメータを最小化するには?
Jiro Dokeさんのコメントのとおりもう少し具体的な処理がイメージできる形で書いていただけると迅速な回答が期待できます。 参考: <https://jp.mathworks.com/matlabcentral/answers/309720-tut...

9 years ago | 2

| accepted

Answered
3d Point Cloud Training in CNN
As of release R2016b, |imageInputLayer| of CNN feature in Neural Network Toolbox does not accept 3D images(volume data) or 3D po...

9 years ago | 0

| accepted

Answered
How to use the Computer Vision System Toolbox OpenCV Interface?
If you just want to use Harris corner detection algorithm, try <https://jp.mathworks.com/help/vision/ref/detectharrisfeatures.ht...

9 years ago | 1

| accepted

Answered
I am doing research and know how I use radial basis function for face recognition in matlab
<https://jp.mathworks.com/matlabcentral/fileexchange/49914-streaming-face-detection--training--recognition This> is not based on...

9 years ago | 0

Answered
Camera Calibration: Tilt image to make camera and image plane perpendicular
The easist way to compare the two images in same plance is to use |rectifyStereoImages| function, but if you want to know more w...

9 years ago | 0

| accepted

Answered
image size of positive image set for training
You don't need to care the size of images. This is because |vision.CascadeObjectDetector| performs multiscale object detection o...

9 years ago | 0

Answered
connecting android with matlab i.e sending camera frames from android phone to the input image of matlab code.
Try this. 1. Install "IPwebcam" app from the link and connect your Android to your host PC through WiFi. <https://play.goo...

9 years ago | 3

Answered
Measuring object size with stereo vision
Have you tried this example? <https://www.mathworks.com/help/vision/ref/triangulate.html> Generally, the accuracy of stere...

9 years ago | 0

Answered
How to add Time Delay
<https://www.mathworks.com/help/matlab/ref/timer-class.html |timer|> object might be helpful for scheduled execution.

9 years ago | 0

Answered
列ベクトルを時系列データに変換する方法
DSP System Toolboxの |Unbuffer| ブロックを試してみてください。 下記の回答も参考になるかもしれません。 <https://jp.mathworks.com/matlabcentral/answers/321516-...

9 years ago | 2

| accepted

Answered
How to do a manual calculation of worldpoints from image points with Matlab Computer Vision data
The following document page for |pointsToWorld| method would be helpful: <https://www.mathworks.com/help/releases/R2016b/visi...

9 years ago | 3

| accepted

Answered
点群データ上のおける重心検出する方法について
Jiro Doke さんのご指摘のとおり具体的に書いていただけると適切な回答が迅速に得られる可能性があります。 点群のフィッティングについてはComputer Vision System Toolboxの |pcfitplane| 関数が役に立つかも...

9 years ago | 3

| accepted

Answered
discrete time optimization with non-linear constraints
I'm not sure what you want to get, but I tried to create an example. Hope this helps. function [x,f,eflag,outpt] = myModelP...

9 years ago | 2

| accepted

Load more