Community Profile

photo

Kritika Bansal

MathWorks

Last seen: mehr als ein Jahr vor Aktiv seit 2019

I am an Application Support Engineer in EDG, MathWorks. My major responsibilities include working with the customers in helping them to solve their problems, developing MATLAB features.

My areas of interests include Computer Vision and Image Processing.

DISCLAIMER: Any advice or opinions here are my own and in no way reflect that of MathWorks.

Statistiken

All
  • Knowledgeable Level 3
  • Revival Level 3
  • 3 Month Streak
  • First Answer
  • Community Group Solver
  • Introduction to MATLAB Master
  • CUP Challenge Master
  • Promoter
  • Solver

Abzeichen anzeigen

Content Feed

Anzeigen nach

Beantwortet
How can I get the calibration data for camera and lidar data which I captured?
Hi, In order to get the calibration between lidar and camera, you can use the lidarCameraCalibrator app. This is a good place t...

fast 2 Jahre vor | 1

| akzeptiert

Beantwortet
How to check if external program/software is installed using App
Hi, A similar question is answered in the link below. https://www.mathworks.com/matlabcentral/answers/487723-how-to-check-if-a...

etwa 4 Jahre vor | 0

Beantwortet
When I write a script on the phone, the same script gets uploaded on matlab drive but it fails to load on the pc version.
Hi, You can download the file on your PC and use them. To downoad the file, you can follow the below steps: Go to https://driv...

etwa 4 Jahre vor | 0

Beantwortet
Missing values using 'websave'
Hi, I tried running your code in MATLAB Online R2019b and it works fine. I am able to see the data correctly.

etwa 4 Jahre vor | 0

Beantwortet
When I try to run a simple plot script, I get the following error?
Hi, You can try a couple of things to fix it:. 1.Type the following command in MATLAB command prompt to see if you have the co...

etwa 4 Jahre vor | 0

Beantwortet
Extracting a constant values from a 2D matrix
Hi, You can check out the link below for a similar question answered using min and abs functions: https://www.mathworks.com/ma...

etwa 4 Jahre vor | 0

Beantwortet
Close a web browser from script
Hi, You can do that by using the following command in MATLAB !taskkill -f -im chrome.exe

etwa 4 Jahre vor | 0

Beantwortet
How do I get the cut attributes out of a classification tree
Hi, You can use the view function to view the classification or regression tree. view(tree, 'Mode', 'graph'); To see examples...

etwa 4 Jahre vor | 0

Beantwortet
Display multiple slices of a Dicom file
Hi, You can possibly use the following function from File Exchange to do so: https://www.mathworks.com/matlabcentral/fileexcha...

etwa 4 Jahre vor | 0

Beantwortet
How do I pass data of pointer to output without factory.createArray() in mex c++?
Hi, You can use the function mxCreateDoubleMatrix to create a 2D matrix. One of the parameters is ComplexFlag which needs to be...

etwa 4 Jahre vor | 0

Beantwortet
Loading existing Ground Truth in Ground Truth Labeler
Hi, Assuming you are using MATLAB R2019b, the input to groundTruthLabeler can be either a sessionFile or others as mentioned he...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
live script show control at pdf
Hi, You can do this by clicking on Hide Code button and then Export to PDF. You can find the Hide Code button on the right of t...

etwa 4 Jahre vor | 0

Beantwortet
DOS window popup causing problems
Hi, One of the probably reasons for the cmd.exe window to pop up is you are using ! somewhere in your code. If this is not t...

etwa 4 Jahre vor | 0

Beantwortet
How to use a mobile front camera for video recording and show the captured image with face detection?
Hi, You can possibly use VideoWriter to save the video. In order to do so, you can make use of the following code snippet and a...

etwa 4 Jahre vor | 0

Beantwortet
3D-Image Processing find() several values performance
Hi, You can try creating a parallel.pool.Constant and see if that helps you. You can find more information on the link below: ...

mehr als 4 Jahre vor | 0

Beantwortet
Multilevel image thresholding combining distinct colors
Hi, I tried replicating the issue on my end, but the output comes out to be correct in my case when I ran the following comman...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
How to set point cloud transparency?
Hi, You can use scatter3 function to plot the pointCloud object and change MarkerFaceAlpha and MarkerEdgeAlpha to change the t...

mehr als 4 Jahre vor | 2

Beantwortet
Mini-Batch loss and accuracy trends
Hi, As you said you’re using Fast R-CNN for the first time, the example given on https://www.mathworks.com/help/vision/ref/tra...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
issue getting matlab to work
If the issue still persists, you can contact your sales representative to get detailed understanding about your license terms. I...

mehr als 4 Jahre vor | 0

Beantwortet
Print error only with PC/matlab 2019a
Hi, The problem seems to be with the file name you are using to generate the pdf. According to the documentation of the print...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
DataStore for image sequence
Hi,  Considering you are referring to a video dataset when you say ‘image sequence’, you can write your ReadFcn in the followin...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
Training the RCNN Detector with multivariable from groundtruth
Hi, As per my understanding, you need a way to train the RCNN object detector to detect classes other than smoke. Assuming you...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
How can I find camera parameters from already existing images that are not checkerboard
Hi, Although the Camera Calibrator App supports only the checkerboard image, you can calibrate your camera and find the camera...

mehr als 4 Jahre vor | 0

Beantwortet
How to apply noise reduction filter to my DICOM image series
You can possibly apply the 2D Wiener filter on each channel of your 3D DICOM image and see how it works. Probably, something lik...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
Taylor series of log(x) with a = 1.
Hi, Taking the analogy from the expression returned by the following command: taylor(log(x), x, 'ExpansionPoint', 1, 'Order',...

mehr als 4 Jahre vor | 0

Beantwortet
Problem with a matrix question
rng(seed) is used to control the random number generating functions like rand(), randi(), randn() in MATLAB rand(m,n) generate...

mehr als 4 Jahre vor | 0

Beantwortet
Read data in Matlab
Hi, Assuming that you are using MATLAB R2006a or above, you have the following options to read a text file in matlab: Using ...

mehr als 4 Jahre vor | 1

Beantwortet
How can I average every other value in a 500 by 500 matrix
Hi, There are few ways to do so in MATLAB. Some of them are listed below: Using interp2 function of MATLAB. As per my underst...

mehr als 4 Jahre vor | 0

Beantwortet
Remove the variable column generated by the rows2vars function
Hi,  Assuming you are MATLAB R2018a or later versions, you can use writetable function once you convert your structure to table...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
adaptive local global thresholding
Hi, To perform adaptive thresholding, you can use imbinarize in combination with adaptthresh function of MATLAB as follows: ...

mehr als 4 Jahre vor | 0

Mehr laden