Takuji Fukumoto
MathWorks
Followers: 0 Following: 0
Estadística
0 Preguntas
48 Respuestas
20 Archivos
Cody0 Problemas
2 Soluciones
CLASIFICACIÓN
298
of 295.448
REPUTACIÓN
290
CONTRIBUCIONES
0 Preguntas
48 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
75
CLASIFICACIÓN
1.415 of 20.227
REPUTACIÓN
1.310
EVALUACIÓN MEDIA
4.60
CONTRIBUCIONES
20 Archivos
DESCARGAS
131
ALL TIME DESCARGAS
11188
CLASIFICACIÓN
81.955
of 153.872
CONTRIBUCIONES
0 Problemas
2 Soluciones
PUNTUACIÓN
30
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
5 Público Canales
EVALUACIÓN MEDIA
30
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Grad CAMのような、画像分類をした際に「画像のどの部分に注目して分類したのか」を示すためにはどのようにしたらよいですか?
①深層学習で画像分類をしたものについて、機械がどの部分に着目をして判断を下したのかを知りたいのですが、どのようにしたらよいのでしょうか? →通常のCAMのデモですが、よろしければご利用ください。 SqueezeNetでの例ですが、この考え方はGoog...
casi 6 años hace | 1
| aceptada
FFTのピーク周波数以外の周波数のレベルを下げることはできますか?
まず、下記についてですが、 >ピーク高-30~40dBあたりに下辺のレベルが形成されて データの長さLsが周期の整数倍でないことで別の成分が見えてしまっています。 Fi = Fs * 0.1; % 入...
casi 7 años hace | 4
| aceptada
SURF特徴量を使ったマッチングで処理領域を限定することはできますか?
もし任意の形状のROIを作成したいということであれば、impolyで長方形以外のROIを指定することができます。 <https://www.mathworks.com/help/releases/R2017b/images/ref/impoly.ht...
casi 7 años hace | 2
条件に該当する行列をどんどん連結していきたい
ch(:,23) = vertcat(ch(:,23),ch0(:,23)); の書き方をするとエラーがでているのかと思いますが、 仮にch,ch0が10行だとすると10行のところに10+10の20行のデータを書き込もうとしていることに...
casi 7 años hace | 0
| aceptada
塗りつぶしの方法を教えていただけないでしょうか?お願いします。
2値化した後にモルフォロジー処理にて網目の部分をうめるのはいかがでしょうか。 strelの引数で、埋める際の構造を変更できますので、 最適な埋め方をいくつか試されるとよいかと思います。 I = imread('a.bmp'); ...
casi 7 años hace | 3
| aceptada
主成分分析を使って画像の重心を通る第1主成分軸をプロットするにはどうすればよいでしょうか?
pcaの利用が必須、もしくは複雑な形状であればいろいろ考える必要がありそうですが、 最大長軸が明確に見えているなら、 image Processing Toolboxにある画像解析用の関数regionpropsで 'MajorAxisLength...
casi 7 años hace | 1
subplotで複数のplotを一つのfigureウィンドウに描写した場合のキャプチャと動画保存について
movie2aviは最新のVer.では利用できないようでして、古いVer.をお使いでしょうか。 VideoWriterのオブジェクトを使うのが良いかと思います。 使い方についてはサンプルコードを添付しますので、参考にしてください。 仮に画像サ...
alrededor de 7 años hace | 2
| aceptada
画像内から選択したピクセルの輝度を調べたいです
imtoolを利用すると良いかと思います。 グレースケール画像の変数がGとすると imtool(G) で表示でき マウスを置いたところの座標情報と輝度情報が左下の「ピクセル情報」に表示されます。 さらに上部のアイコンから「ピクセル...
alrededor de 7 años hace | 4
| aceptada
画像からの座標の読み取り
エッジ検出が終わっているということで、2値化された画像をお持ちの状態かと思います。 regionprops関数を利用するとその画像のパラメータを取得することができます。 <https://www.mathworks.com/help/release...
más de 7 años hace | 4
,(コンマ)と:(コロン)で区切られたデータの整理
csvファイルをMATLABウィンドウからクリックすると、インポート用のツールが立ち上がり、 その「列区切文字」を”コンマ”と”コロン”を両方選択すればよいかと思います。 タブの一番右のコードの生成をすればMATLABコードとして得ることができます。 ...
más de 7 años hace | 2
| aceptada
ビデオファイルの更新日時を読み取る方法
動画に限らず一般的なファイルであれば下記で取得できます。お試しください。 MyFileInfo = dir('1.mp4'); MyFileInfo.date
más de 7 años hace | 1
| aceptada
MATLABで作成したプログラムをラズパイで動かす方法
MATLAB Support Package for Raspberry Pi HardwareをアドオンするとRaspberry Piと連携して使うことができます。 <https://www.mathworks.com/help/releases/...
más de 7 años hace | 1
| aceptada
matファイルの変数データのスペクトル化について教えてください
引数で変数名を入れるところを保存したファイル名でいれていらっしゃるからかと推測します。 load data.mat; の実行で出てくる変数はdataでしょうか。 その場合下記で実行されて、結果はどうでしょうか。 order = ...
más de 7 años hace | 3
| aceptada
ドキュメンテーション深層学習を使用したイメージ カテゴリの分類での質問です.
CNNのネットワークの層の置き換えは下記で行うことができます。 mylayers = convnet.Layers mylayers(1) = imageInputLayer([454 454 3]); mylayers また、...
más de 7 años hace | 3
| aceptada
How to resize video
I think you can write like this function myfunc() %code end In this example, imresize is used in function....
casi 8 años hace | 0
how to find the distance between two point in a video while playing video?
You can get each frame with the following code. And deal with it as an image. vidobj = vision.VideoFileReader('filename') ...
casi 8 años hace | 2
How i can crop image with bw roipoly and how to display?
If you want to show the segmented image, please try this after creating mask. out = rgb2gray(I); out(~BW) =0; imshow(...
casi 8 años hace | 0
| aceptada
How to resize video
imresize function is fine. Here is the example. vidobj = vision.VideoFileReader('moviename') viewer = vision.Deployable...
casi 8 años hace | 0
I want to divide image into 8*8 blocks and to find the color difference between pixels inside the block. And i need to retrieve only the larger difference pixel.
You can cut out 8*8 image from a large image. Icut = I(i:i+8,k:k+8); Please set appropriate i,k value to get the area yo...
casi 8 años hace | 0
| aceptada
I need to find red,yellow,orange colors only in an image .how to find repeated pixel values for those colors in an and RGB image.
This is nice tool to understand the intensity in RGB color space imtool You should specify the threshold level from the ...
casi 8 años hace | 0
| aceptada
how to display LAB colors present in an image with their intensity values to retrieve a particular object based on color
I recommend you to use colorThresholder <</matlabcentral/answers/uploaded_files/68589/1..bmp>> You can see LAB spectr...
casi 8 años hace | 0
How can I change one column of a .mat file ?
I think you need to write conditional statement like here if A(i,97)== 1:5 || A(i,97)== 11:15 || A(i,97)== || 21:25 ... ...
casi 8 años hace | 0
| aceptada
How can I change one column of a .mat file ?
You can replace data in a colum. Please see below. imax1 = 100 imax2=4; data = randi(imax1,[1769,97]); newcol = ...
casi 8 años hace | 0
Reconstructing 3D point cloud from two stereo images
This shows the workfrow to reconstruct point cloud from stereo vision <https://www.mathworks.com/help/vision/examples/depth-e...
casi 8 años hace | 2
| aceptada
fill a particular blob with black
Please try this. L = bwlabel(BW); [r,c] = find(L == 4); BW(r,c) = 0; figure,imshow(BW)
casi 8 años hace | 1
| aceptada
I am a beginner of using matlab. I have a extracted ROI of lung CT scan. I want to remove the rod (stick) like structures from that binary image in order to left only the round objects ( nodules). Please, kindly advise me.
I recommend you to use regionprops function. You can measure properties of binary image with this. <https://www.mathworks.co...
casi 8 años hace | 0
| aceptada
三次元行列をslice関数でイメージ表示させたのですが、中を透過させたいです。
こちらのページが参考になるかと思います。 <https://jp.mathworks.com/help/releases/R2016b/matlab/visualize/techniques-for-visualizing-scalar-volume...
casi 8 años hace | 3
How do I isolate the layers of the given grayscale image?
Here it is. <</matlabcentral/answers/uploaded_files/68298/result.jpg>> I = imread('point5.jpg'); Ig = rgb2gray(I)...
casi 8 años hace | 0
how can i find displacement in image between two points in millimeter?
Please use imtool(). It has a ruler function. <https://www.mathworks.com/help/images/ref/imtool.html?s_tid=srchtitle>
casi 8 años hace | 0
| aceptada
Applying translations to a folder of images
I show the way to write image in different folder. I = imread('chrom\image.jpg'); <image processing> mkdir('chrom...
casi 8 años hace | 1