Skip to main content
Filter by
Sorted by
Tagged with
3 votes
1 answer
739 views

I am trying to apply data masking policy on shared database where we have access to only views.However I provided grant to databases also.I am not able to apply this masking policy here is my code ...
Divya's user avatar
  • 31
-1 votes
1 answer
830 views

Right now I am able to mask the digits only on blur.I need to mask them in the display as they are typed. On click of the submit button, the original entered values need to be displayed. I have ...
niharika chilukuri's user avatar
0 votes
1 answer
188 views

I have a symbol S1 with two shapes (lets say sh0 and sh1). On the stage I have an instance of another symbol mc. At run time, I will create an instance mc1 of the symbol S1. Using createjs, how can I ...
thebalans's user avatar
0 votes
1 answer
464 views

i'm trying to understand climate data from satellites. If you want to see ncdump of file here: netcdf NSS.AMBX.NK.D08214.S0740.E0931.B5312324.WI { dimensions: nscan = 2495 ; npixel = 90 ; ...
updraftman's user avatar
-1 votes
2 answers
1k views

I tried to mask image by its color using opencv. import cv2 import numpy as np import matplotlib.pyplot as plt After importing libraries, I load the image img = cv2.imread('gmaps.jpg') image = cv2....
zzzz's user avatar
  • 71
0 votes
1 answer
57 views

function maskify(cc) { return cc.replace(/.(?=.{4})/g, "#"); }
GreyHound's user avatar
0 votes
1 answer
4k views

I'm currently playing around with a stackblitz here: https://stackblitz.com/edit/angular-ivy-qr7yav?file=src%2Fapp%2Fanother.component.html With both ng-neat's input-mask found here https://github.com/...
Kyle Westendorf's user avatar
0 votes
1 answer
166 views

I wanted to mask any values under 5 in my R dataframe and was looking for a solution to do it in one go for the entire dataframe.
Fatemeh Torabi's user avatar
0 votes
1 answer
2k views

I have a ZStack like such ZStack { Image("source") Image("source") } Where one layer is a solid square image and the other is hexagonal image that's slightly smaller than ...
theZ3r0CooL's user avatar
0 votes
3 answers
124 views

See in this problem I want to clear the i_th bit which is 1 so after performing this method it should be 0 and should return 0, but its not and should return 0 but its returning 1, I don't know why, ...
noob_coder051's user avatar
1 vote
1 answer
3k views

I have an app that makes extensive use of react-native-paper's TextInput. Many of these inputs have to deal with monetary units. I know that TextInput from react-native-paper provides a render prop ...
Jo Momma's user avatar
  • 1,377
0 votes
1 answer
911 views

I want to use the LANDSAT/LE07/C01/T1_TOA collection in google earth engine and I am struggling to understand how the bits work in order to mask out areas with clouds and shadows. I managed to write ...
foo's user avatar
  • 43
-1 votes
1 answer
624 views

I have Json Array data as shown below: { "AccountNumber":[ "123456789012", "234567891012", "345678912012" ] } Now I want to ...
Deval Soni's user avatar
1 vote
1 answer
2k views

I am trying to implement Input Mask with children as input component, I used https://github.com/sanniassin/react-input-mask. The problem is while onChange() event triggers setState() is called and the ...
skr07's user avatar
  • 725
0 votes
1 answer
139 views

I have some images and each of them has a masked (transparent) rectangular region inside of the same size. How can I detect the coordinates of those regions? I searched for libraries but none of them ...
Giorgi Tskhondia's user avatar
1 vote
1 answer
765 views

Two 2D numpy arrays are given (arr_all and arr_sub) whereas the second is a random subset of the first. I need to get the rows of the first one (arr_all) that are not included in the second one (...
The dude's user avatar
2 votes
1 answer
188 views

I have two boolean Numpy arrays of boolean indicators: v v v A = np.array([0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1], ...
Craig Nathan's user avatar
0 votes
0 answers
97 views

I have been trying to convert this matlab code How to detect defect/missing pills in blister pack? (Matlab) into python, and I have been stuck on this issue for a while. I am trying to find the ...
Iyadh Ali's user avatar
0 votes
0 answers
138 views

I want to implement masking based on position, we will give lower and upper bound for string in column. Let me explain with an example. I am trying below code columnname = "phonenumber" ...
bhavishya alla's user avatar
1 vote
1 answer
596 views

I need to mask certain attributes of a column with array((struct)) data type in Hive. For example, a field, biodata = [{'name':'Rahul','age':20,'gender':'male'},{'name':'Kavita','age':25,'gender':'...
Abhishek Gupta's user avatar
0 votes
1 answer
221 views

Here is my jupyter code:- boxes1 = tf.random.normal([19, 19, 5, 4], mean=1, stddev=4, seed = 1) boxes2=np.random.randn(19, 19, 5, 4) and here I have found value of filtering_mask variable ...
Raj_Ame09's user avatar
  • 140
2 votes
1 answer
190 views

Is it possible to vectorize the insertion of rows? I have a large 2D numpy array arr (below) and a list of indices. For each index of arr in indices I would like to insert the row at that index back ...
Craig Nathan's user avatar
1 vote
1 answer
443 views

How can I replace multiple instances of a pattern in a large 2D numpy array with a smaller 2D numpy array? I am looking for a vectorized solution using a boolean mask to minimize the performance ...
Craig Nathan's user avatar
1 vote
0 answers
120 views

I have so many Nan values in my output data and I padded those values with zeros. Please don't suggest me to delete Nan or impute with any other no. I want model to skip those nan positions. example: ...
 R P's user avatar
  • 11
0 votes
2 answers
3k views

This is my input field section <div class="form-group"> <label for="accountNumber">Account Number <span class="validate_star">*</span>&...
Abhijith18p's user avatar

1 2 3
4
5
24