Questions tagged [identify]
196 questions
2
votes
3 answers
How to make ImageMagic identify accept input from a pipe?
Trying to pipe list of images from find to identify and I get no output.
Using this command, I get no results.
find . -iname "*.jpg" -type f | identify -format '%w:%h:%i'
However, if I use this command, which doesn't use a pipe but instead uses…

ragouel
- 179
- 4
- 15
2
votes
1 answer
How to add a span around the first part of text in a div
I'm trying to wrap a span around the first part of a plain text in a div and style it with a different font-color and font size and have a line-break after it. The problem is, that it's a plain text in which I can't add any custom code in the…

Rob M
- 21
- 2
2
votes
1 answer
How to identify which button is clicked in flutter
I have 4 buttons showing a different list each time a button is clicked . How to identify which button is clicked using flutter ?

Divyang Shah
- 3,577
- 5
- 14
- 27
2
votes
1 answer
What is a UTM code?
What Are UTM Codes and How Do You Use Them?
When you are navigating looking for products, there are some information about
you are looking for, that remains unvisible on the navigator and some pages uses them for identify your preferences.
Why…

JWBG
- 1,286
- 1
- 14
- 20
2
votes
0 answers
matlab: get multiple mouse coordinates displayed on one screen
I have two mouse pointers displayed om the screen (currently by using TeamPlayer application), and i would like to know if there is any way in MatLab that I can identify and read the mouse coordinates of each pointer.
i know how to get the…

Suhaib Ahmad
- 487
- 6
- 25
2
votes
1 answer
Best way to uniquely identify iOS device?
I'm aware if the following methods, each which has it'd flaws
UDID
Advertising Identifier
Vendor ID
The problem with UDID is that its deprecated and doesn't even work as of ios7, problem with other two is that the user can change them via…

Hamzah Malik
- 2,540
- 3
- 28
- 46
2
votes
3 answers
How to highlight or identify a column with a specific value in matrix?
I would like to highlight or identify a column in a matrix with a specific value in MATLAB. Suppose I have a matrix A = [1 0 1 1 0 1; 1 1 0 0 0 1; 1 0 1 1 0 1; 0 1 1 0 0 1].
The result of the above matrix is a 5th column, as it contains all zeroes.…

Azhar
- 23
- 3
2
votes
1 answer
groovy xml parsing and modification
I am trying to build a test automation script using groovy. My input template is like myXML variable
I am reading input data from excel file and replacing the values and firing the request through SOAPUI.
my code is like this
def myXML…

user1799346
- 21
- 1
2
votes
1 answer
detect language of text using c++ or shared object
i'm new to c++ and need a way for detecting the language of the text.
i searched for any plugin to do that and only found the chromum open source code.
https://code.google.com/p/cld2/
there is many pages talking about using it at python, java or…

amr
- 49
- 6
2
votes
2 answers
identify dynamically created svg element
I am trying to manipulate elements inside svg (such as circle or path). I need to create them dynamically and be able to identify them.
I've stolen few functions from some online examples, and came up with following code (it should create circle…

krisfiddle
- 41
- 5
2
votes
1 answer
How to identify sender from websocket (PHP)
I try to build a website with WebSocket (JS+PHP) and i would like to get the socket from the sender. For example, if a client 'A' send a message to my server, how can I get the socket from the client 'A'.
I've search on google but the only thing i…

X4V18
- 97
- 1
- 13
2
votes
2 answers
Identification of Dynamic List items
I'm trying to identify list data the code is:
my $listdata = '
List Items:
(1)LIST 1 data
(a)sub data
(b)sub data
(c)sub data
(d)sub data
(i)sub-sub data
(ii)sub-sub data
(A)sub-sub-sub data
(B)sub-sub-sub data
…

waghso
- 623
- 7
- 23
2
votes
2 answers
How to identify "similar" rows in R?
Hi to all the members of the community,
I am trying to find out how to compare elements of my DB and identify them by a new binary variable.
My DB is like…

stefano
- 601
- 1
- 8
- 14
2
votes
1 answer
Fastest way to get colormode of images
I want to get colormode (bitmap, gray, rgb, cmyk) of image files (jpg, tif). Imagemagick calls it "colorspace", while exiftool "colormode" and Photoshop "image mode".
One possibility is identify, which gives nearly always the desired result, but it…

Timo Kähkönen
- 11,962
- 9
- 71
- 112
2
votes
2 answers
Identifying subnet mask of the computer in Delphi
I am looking for a way to be able to retrieve IP Subnet mask of the computer I am currently
running on at run time, in Delphi.
Is there a way in code for me to retrieve the subnet mask and store it so that I may use it in other operations?
Thanks

Pippa Rose Smith
- 1,377
- 5
- 18
- 42