Answered
RCNNによる多クラス検出について
下記の |[score,idx]=max(score)| でスコアが最大のもの選択しているようです。 [bbox,score,label]=detect(rcnn,img,'MiniBatchSize',32); [score,idx]=m...

8 years ago | 3

| accepted

Answered
動画のトリミングの仕方
時間方向のトリミングということであれば、 <https://jp.mathworks.com/help/vision/ref/vision.videofilereader-system-object.html |vision.VideoFileReader...

8 years ago | 4

| accepted

Answered
GA(遺伝的アルゴリズム)での各世代での目的関数の値を知りたい
目的関数の値を各反復ごとにプロットしたいということであれば <https://www.mathworks.com/help/releases/R2017a/gads/gaoptimset.html gaoptimset> を使って <https://www...

8 years ago | 3

| accepted

Answered
Training後のNeuralNetworkの保存と呼び出し方法について
MAT-fileに保存ではだめでしょうか。 |save| コマンドで保存できます。 netTransfer = trainNetwork(trainDigitData,layers,optionsTransfer); save('netTr...

8 years ago | 0

| accepted

Answered
テキストとバイナリデータ混在のファイルを読み込むには?
試した方法やプログラムなども含めて投稿していただけると適切な回答が得られるケースが多いです。 テキストとバイナリの読み出し方法のサンプルです。 フォーマットの詳細は理解できていませんが、ご参考になれば幸いです。 % Licel Raw...

8 years ago | 5

| accepted

Answered
画像からの座標の読み取り
画像処理でやりたいことがある場合には <https://jp.mathworks.com/help/images/examples.html Image Processing Toolbox の例> をまずは探されることをおすすめします。 たとえば、...

8 years ago | 3

| accepted

Answered
DICOMヘッダの日本語文字列をdicominfoで取得すると文字化けしてしまう
<https://jp.mathworks.com/help/matlab/ref/native2unicode.html |native2unicode|> でMATLABで使われているUnicodeに変換できないでしょうか。 手元に文字化けするD...

8 years ago | 2

| accepted

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

8 years ago | 1

| accepted

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

8 years ago | 2

| accepted

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

8 years ago | 1

| accepted

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

8 years ago | 1

| accepted

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

8 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...

8 years ago | 0

| accepted

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

8 years ago | 2

| accepted

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

8 years ago | 3

| accepted

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

8 years ago | 2

| accepted

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

8 years ago | 4

| accepted

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

8 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...

8 years ago | 0

| accepted

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

8 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...

8 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...

8 years ago | 1

| accepted

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

8 years ago | 1

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

8 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

Load more