Unsharp mask

Amount determines how much to increase the contrast of pixels. Typically 20 – 30% Radius is used to identify how many pixels around edges to sharpen. Typically 40 -70 Threshold determines how far pixels must be from surrounding area in order to be considered an edge. Anything greater than 0 is useless. Amount = 20 … Read more

Split first and last names in Excel VBA

When data is formatted like this: Colbert, Mike test@test.com BAIS IS And you want it like this: Mike Colbert test@test.com BAIS IS Sub dataCleanUp() Dim name As String Dim email As String Dim major As String Dim track As String Dim i As Integer ‘ loop counter Dim nStudents As Integer ‘ row counter Dim … Read more