Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
380 views

Is 000,000,000.00 greater than zero?

I have an input mask on my text box like 000,000,000.00 I have the following jQuery code to check the value of text box before submitting data. var txt_box = ...
12
votes
1answer
2k views

How to mask credit card numbers in log files with Log4J?

Our web app needs to be made PCI compliant, i.e. it must not store any credit card numbers. The app is a frontend to a mainframe system which handles the CC numbers internally and - as we have just ...
9
votes
6answers
223 views

Search with a mask

There is big array of entries having the following type: typedef struct { int value; int mask; int otherData; } Entry; I'd like to find an entry in this array according to provided int ...
8
votes
4answers
2k views

Precise OpacityMask

Suppose I need to set an opacity mask on a WPF control that highlights a portion of it in precise position (suppose a 50x50 square at (50;50) position). To do that I create a DrawingGroup containing 2 ...
7
votes
1answer
240 views

How to use a mask with QPainter?

I have a shape (in blue) loaded from a PNG with transparency: Then I'm drawing several circles on top of this shape (in red) with QPainter::drawEllipse. The result of that is somewhat similar to ...
7
votes
6answers
266 views

Why would you mask a base class member?

I have just learned how to mask a base class member (using new) but am missing the point as to why I would want to do that. Does masking provide us with a certain level of protection as is the case in ...
7
votes
2answers
4k views

Masking a Drawable/Bitmap on Android

I'm currently looking for a way to use a black and white bitmap to mask the alpha channel of another bitmap or Drawable on Android. I'm curious as to what the best way to do this is. I certainly ...
6
votes
1answer
5k views

Masking a CALayer - iPhone

I'm creating a custom on / off toggle switch for the iPhone (similar to the standard switch) and i'm at the point where I'm setting the mask of the slider, but calling [[myView layer] ...
6
votes
3answers
2k views

Is there way to match IP with IP+CIDR straight from SELECT query?

Something like SELECT COUNT(*) AS c FROM BANS WHERE typeid=6 AND (SELECT ipaddr,cidr FROM BANS) MATCH AGAINST 'this_ip'; So you don't first fetch all records from DB and then match them one-by ...
5
votes
1answer
148 views

How to create reverse masks on CALayers

I'll make this as simple as possible How do I create reverse masks on CALayers in iOS? I have a red view and an image that is used to mask the red view. I use the view's CALayer's mask property to ...
5
votes
1answer
96 views

list of masked functions in R

I use a lot of packages and I know some functions are masked because they exist in several different packages. Is there a way to get the list of duplicate functions (or masked functions?) The ideal ...
5
votes
2answers
139 views

Most efficient way to pull specified rows from a 2-d array?

I have a 2-D numpy array with 100,000+ rows. I need to return a subset of those rows (and I need to perform that operations many 1,000s of times, so efficiency is important). A mock-up example is ...
5
votes
5answers
2k views

C# Hex Mask for maskedtextbox input

I'm trying to set a hex mask for a textbox. So that only valid hex numbers can be entered. (And ',' and 'ENTER') It almost works. So far it will only allow small letters from a-f and numbers 0-9, but ...
5
votes
5answers
3k views

Converting CIDR address to subnet mask and network address

Given a CIDR address, e.g. 192.168.10.0/24 How to determine mask length? (24) How to determine mask address? (255.255.255.0) How to determine network address? (192.168.10.0)
4
votes
3answers
156 views

OpenGL ES: How to tint texture with color

I have texture with alpha. And I want to tint it with some color, so it will be colored depending on color alpha value, but overal opacity will be defined only by texture alpha. This is similar to ...
4
votes
1answer
136 views

How to mask numpy structured array on multiple columns?

I have a numpy structured array with a dtype such as: A = numpy.empty(10, dtype=([('segment', '<i8'), ('material', '<i8'), ('rxN', '<i8')])) I know I can create a mask such as: ...
4
votes
2answers
978 views

masking a UIImage

I'm working on an app that can change the borders or a rectangular UIImage. The borders will vary, but will look like the UIImage was cut out with scissors, or something to that affect. What is the ...
4
votes
2answers
1k views

PHP - Mask polygon over image

Hi Everyone (this is my first post), I am trying to figure a way of cropping a polygon out of an image. I have been reading other similar code. It seems that most code is based around the following ...
4
votes
2answers
2k views

Use another control as an opacity mask in WPF?

I'm trying to use the OpacityMask property combined with a VisualBrush so that when you drag an image over another control (such as another image, rectangle, or any other control), the part of the ...
4
votes
2answers
254 views

Compare tool that can mask differences?

I do a lot of file comparisons (source, logs etc.) and need to mask certain sections e.g. dates / times / line numbers which cause every line to be different. Beyond Compare allows you to pre-process ...
3
votes
1answer
35 views

Can I apply a mask on an image with Ruby?

I have a Rails app where users can upload images. After they upload an image, I need to apply a mask on that image, so parts of it become transparant. Is this possible?
3
votes
3answers
99 views

How to apply a disc shaped mask to a numpy array?

I have an array like this: >>> np.ones((8,8)) array([[ 1., 1., 1., 1., 1., 1., 1., 1.], [ 1., 1., 1., 1., 1., 1., 1., 1.], [ 1., 1., 1., 1., 1., 1., 1., ...
3
votes
3answers
116 views

Date input mask in Dojo

Does dojo have some kind of input mask capabilities, more specifically for dates, or is there a pure javascript solution that does the trick? Something along the lines of this jquery plugin.
3
votes
1answer
101 views

Extjs masking and unmasking in IE and FF

I have a handler, more like a submit button. And I would like to mask the whole page or that form to show wait message until the rest of the process is completed. I did this and it worked in FF but no ...
3
votes
3answers
195 views

Masking password in Java CLI application

I've made this little ATM application in Java (CLI) and in the beginning I want to have "Code: " and then the user should enter it, and in my Java application it should say something like String(or ...
3
votes
1answer
171 views

AS3 mask weird result

I'm playing around with dynamic masking for part of a puzzle game I'm making. I've got a test puzzle with 6 pieces. The puzzle exists out of 3 layers: black shape = this is where you put your ...
3
votes
2answers
623 views

mask a 2D numpy array based on values in one column

Suppose I have the following numpy array: a = [[1, 5, 6], [2, 4, 1], [3, 1, 5]] I want to mask all the rows which have 1 in the first column. That is, I want [[--, --, --], [2, ...
3
votes
5answers
685 views

Create a mask from difference between two images (iPhone)

How can I detect the difference between 2 images, creating a mask of the area that's different in order to process the area that's common to both images (gaussian blur for example)? Also, some code ...
3
votes
1answer
943 views

How do I shrink a matrix using an array mask in MATLAB?

This seems to be a very common problem of mine: data = [1 2 3; 4 5 6]; mask = [true false true]; mask = repmat(mask, 2, 1); data(mask) ==> [1; 4; 3; 6] What I wanted was [1 3; 4 6]. Yes I can ...
3
votes
2answers
1k views

Win Forms text box masks

How can I put mask on win form text box so that it allows only numbers? And how it works for another masks data, phone zip etc. I am using Visual Studio 2008 C# Thanks.
3
votes
3answers
337 views

How do I merge two masks together in MATLAB?

I have two masks that I would like to merge together, overwriting mask1 with mask2 unless mask2 has a zero. The masks are not binary, they are some value that is user defined in the region of interest ...
3
votes
2answers
3k views

“Masking” an animation? iPhone SDK

I have been looking into ways of masking images on the iPhone. I came across this solution http://iphonedevelopertips.com/cocoa/how-to-mask-an-image.html which works great for still images. What I ...
3
votes
3answers
176 views

Replacing a bit range

Something any sophomore in CS should be able to answer, but I can't seem to wrap my head around it... I have a set of bits, and I need to replace some of the bits with a different set. In a ...
2
votes
2answers
74 views

How to filter the Filelistbox with multiple filetype masking?

Somehow I need to make a custom "file-open form". I manage to retrieve the file list with filelistbox. My question is when I enter this in filelistbox1.mask Image ...
2
votes
5answers
66 views

Calculating the number of bits in a Subnet Mask in C#

I have a task to complete in C#. I have a Subnet Mask: 255.255.128.0. I need to find the number of bits in the Subnet Mask, which would be, in this case, 17. However, I need to be able to do this in ...
2
votes
1answer
38 views

Host-device communication in terms of subnet mask and routing

Let's say I have host computer with two Ethernet adapters: LAN adapter - connected to LAN, obtains IP address automatically. Device adapter - with IP address 192.168.10.1, subnet mask 255.255.255.0. ...
2
votes
1answer
112 views

Customize ExtJs4 Mask

I am using ExtJs mask while executing Ajax call. var tmpMask = new Ext.LoadMask(Ext.getBody(), { msg: "Loading please wait..." }); tmpMask.show(); When request is finished I am hiding the mask ...
2
votes
2answers
96 views

Alpha Mask Extraction process Objective C implementation

Do you have an Objective C implementation equivalent to ImageMagick's command : convert -alpha Extract -type optimize -strip -quality 60 +dither Source.png Alpha.jpg I was not able to find any ...
2
votes
1answer
312 views

Is there a -moz-mask CSS property, like -webkit-mask-image?

It seems -moz-mask-image is not supported in Firefox. I am attempting a foreground gradient. I can't use an image as i need the text to be selectable. Does anyone have any ideas for Firefox? This ...
2
votes
2answers
365 views

ExtJS 4 - Load Mask giving errors in IE8 and IE9 when used while opening a window

I have a window which opens up on a button click. The window takes time to load and hence I am using load mask in following way: handler:function(){ var myMask = new ...
2
votes
3answers
91 views

bigger mask size for laplacian filter?

I was implementing a simple laplacian filter for an image processing project i was working on. I read that the mask for a 3x3 filter is: +0 -1 +0 -1 +5 -1 +0 -1 +0 but i was wondering about the 5x5 ...
2
votes
1answer
243 views

Removing a CAShapeLayer mask on a UIButton layer so that animating UIButton size change is unmasked

I have a UIButton of the custom button type, where I just set a background and border color on the underlying CALayer of the button. I then applied a mask to this underlying layer composed of a ...
2
votes
3answers
90 views

Creating masks across browsers

I see that there are ways to do this in webkit browsers, but I don't see ways to do it in others. Is this simply a feature that hasn't been implemented in all the browsers? I don't have standard ...
2
votes
3answers
216 views

“before and after” Interactive image mask

I'd like to recreate the before and after image slider recently featured on the guardian.co.uk, using web-kit. ...
2
votes
1answer
43 views

Detecting if there is a timeline mask

I am bumping into a very strange behaviour on Flash. If you on the Flash IDE create a shape with a mask associated to it, save it and then export it as a swf, you cannot programatically know there is ...
2
votes
2answers
98 views

Create a PNG having JPG and AlphaChannel in C#

How can I create a PNG file if I have two separated JPG files with the image and the alpha channel? JPG Image + JPG Mask --> PNG with transparency I've tried WPF solutions: image.OpacityMask = new ...
2
votes
2answers
154 views

AS3 Possible to check if mask is completely filled?

With brush_mc you can brush over a mask, wich turns the pixels to transparent in brush strokes. So visually it erases the mask and the masked movieclip appears. I want to trace, if the mask is ...
2
votes
1answer
111 views

Phone Number Mask - Internationals

My Problem My Customer Contact Database has a variety of customers from around the world in it, and this causes some problems for my telephone numbers - because of the different methods of formating ...
2
votes
2answers
132 views

Javascript input mask that enforces sections?

I figure, given a week and Red Bull, I could make something that does this, but first, I wanted to find out if it had been done already. I know input masks already exist: For example, __/__/____. So ...
2
votes
2answers
2k views

Android bitmap mask color, remove color

I am creating bitmap, next i am drawing second solid color bitmap on top of it. And now i want to change first bitmap, so solid color that i drawed on it will be transparent. Or simply, i want to ...

1 2 3 4 5 7