Monday, January 27, 2020
Design of Face Recognition Image Processor
Design of Face Recognition Image Processor Abstract This project deals with the design and implementation of an image processing system for Face recognition using MATLAB. Image treatment is a complex task so, we must study all the background information that image formation and processing requires, and learn the main MATLAB functions which will have to be used. The purpose for this study is to investigate a software application that can show how an image is processed in computer platform. The processing will be done in comparing the sketch image with the real picture to matrix model by using MATLAB program. Picture will be shown when program is running successfully. Real image or picture will be resulted from the matrix using the function in the MATLAB. We can use various functions such as filter or rotate depending on the user itself. In this study, the picture or real image used is from Internet that has referenced properly, scanner and etc. Basic mathematical calculation does not apply in this project as it only used MATLAB program. The significant of this project is to educated user and for us to learn how to process images by MATLAB to learn how the image can be changes after the function indicated by the program. Introduction: Our project is about to know how we can employ image processing application by using MATLAB functions. By the help of image processing Toolbox of MATLAB we were able to modify/write a program with GUI to read images, process them, blur them, and then recognize them as versions of the same images that exist in an image database; lastly we were able to display the original and blurred images. Image processing is the field of signal processing where both the input and output signals are images. Images can be thought of as two-dimensional signals via a matrix representation, and image processing can be understood as applying standard one-dimensional signal processing techniques to two-dimensional signals. Image processing is a very important subject, and finds applications in such fields as photography, satellite imaging, medical imaging, and image compression, just to name a few. In the past, image processing was largely done using analog devices. However, as computers have become more powerful, processing shifted toward the digital domain. Like one-dimensional digital signal processing, digital image processing overcomes traditional analog problems such as noise, distortion during processing, inflexibility of system to change, and difficulty of implementation. The image processing technique we will be implementing will be image blurring even there are many image processing techniques we have by using MATLAB to output the image as a matrix and store it in the data memory. In todays world, digital technology is ever growing, and the development of digitally based products is rising. Various industries such as audio, video, and cellular industry rely heavily on this digital technology. A great part of this deals with digital signal processing. This aspect in engineering has gained increasing interest, especially with much of the world now turning to wireless technology and its applications to keep businesses and industries connected. The world of digital technology is certainly one that will be present for many years to come. [Ref: 4] Project outline: This report consists four chapters. In first chapter, it discuss about the objective and scope of this project as long as summary of works. While Chapter 2 will discuss more on theory and literature reviews that have been done. In Chapter 3, the discussion will be on the methodology hardware and software implementation of this project. The result and discussion will be presented in Chapter 4. Last but not least, Chapter 5 discusses the conclusion of this project and future work that can be done. Problem Statement: In the image processing program, the info for the function are not stated clearly enough and make people understand. In the GUI (Graphical User Interface) program, the info should function as pop-up window after user press any function button. As the project title is Image Processing using MATLAB Learning Tool, the information is not good enough and clears to understand to be recognized by people. The main problem is the effectiveness of people to recognize it. Basically we have used many techniques through which we tried to simplified the way of face recognition. We have used eigenface technique that is very standarlize way to recognize the face using MATLAB application MATLAB also can be used in industry in the areas of bar coding, deck-top publication, copy preparation for printing and factory automation. However, due to the information and studies this state of program of image processing that I only can create. More advance and more functional program can be creating by using MATLAB. Thereby, to write the program became problem and this project not perfectly complete. The problem which comes to set a task to recreate the convolution function for applying filters in image processing. It is very difficult to manage and get the code working. It is also not easy to write our own m-function for unsharp masking of a given image to produce a new output image. During the project development we found following difficulties Apply smoothing to produce a blurred version of the original image, subtract the blurred image from the original image to produce an edge image. Add the edge image to the original image to produce a sharpened image. When carrying out the convolution image is cropped down by some pixel, this means when we go to carry out the subtraction for the unsharpening the images are not the same size and the subtraction cannot take place. To overcome this problems we created a blank matrix in the convolution function that is the same size as the image being inputted, the new image will then go on top of this matrix so in affect the new image has a 1 pixel border around it to make it to its original size. It is very interesting and challenging to come out from these above mentioned problems and for that we have done. Solutions to problems in the field of digital image processing generally require extensive experimental work involving software simulation and testing with large sets of sample images. Although algorithm development typically is based on theoretical underpinnings, the actual implementation of these algorithms almost always requires parameter estimation and, frequently, algorithm revision and comparison of solutions. Because it works in the MATLAB computing environment, the Image Processing Toolbox offers some significant advantages Key components of our approach We have used Eigen Vector method [Ref 12] that is a set of eigenfaces can be generated by performing a mathematical process called principal component analysis (PCA) on a large set of images depicting different human faces. Informally, eigenfaces can be considered a set of standardized face ingredients, derived from statistical analysis of many pictures of faces. Any human face can be considered to be a combination of these standard faces. For example, ones face might be composed of the average face plus 10% from eigenface 1, 55% from eigenface 2, and even -3% from eigenface 3. Remarkably, it does not take many eigenfaces combined together to achieve a fair approximation of most faces. Also, because a persons face is not recorded by a digital photograph, but instead as just a list of values (one value for each eigenface in the database used), much less space is taken for each persons face. Apart from these our project methodology includes the following: Use MATLAB to simulate the processing technique. Carefully locating the memory blocks where we will store our original and output image. Comparing our results in MATLAB. Basically the eigenvectors of a square matrix are the non-zero vectors that, after being multiplied by the matrix, remain proportional to the original vector (i.e., change only in magnitude, not in direction). For each eigenvector, the corresponding eigenvalue is the factor by which the eigenvector changes when multiplied by the matrix. The eigenvectors are sometimes also called proper vectors, or characteristic vectors. Similarly, the eigenvalues are also known as proper values, or characteristic values. The mathematical expression of this idea is as follows: if A is a square matrix, a non-zero vector v is an eigenvector of A if there is a scalar à » (lambda) such that The scalar à » is said to be the eigenvalue of A corresponding to v. An eigenspace of A is the set of all eigenvectors with the same eigenvalue together with the zero vectors. However, the zero vector is not an eigenvector. any problems present themselves in terms of an eigenvalue problem: Aà ·v=à »Ã ·v In this equationAis an n-by-n matrix,vis a non-zero n-by-1 vector and à » is a scalar (which may be either real or complex). Any value of à » for which this equation has a solution is known as an eigenvalue of the matrixA. It is sometimes also called the characteristic value. The vector,v, which corresponds to this value is called an eigenvector. The eigenvalue problem can be rewritten as Aà ·v-à »Ã ·v=0 Aà ·v-à »Ã ·Ià ·v=0 (A-à »Ã ·Ià ·v)=0 If v is non-zero, this equation will only have a solution if |A-à »Ã ·I|=0 This equation is called the characteristic equation ofA, and is an nthorder polynomial in à » with n roots. These roots are called the eigenvalues ofA. We will only deal with the case of n distinct roots, though they may be repeated. For each eigenvalue there will be an eigenvector for which the eigenvalue equation is true. This is most easily demonstrated by example Example: Find Eigenvalues and Eigenvectors of a 22 Matrix If then the characteristic equation is and the two eigenvalues are à »1=-1, à »2=-2 All thats left is to find the two eigenvectors. Lets find the eigenvector,v1, associated with the eigenvector, à »1=-1, first. so clearly from the top row of the equations we get Note that if we took the second row we would get In either case we find that the first eigenvector is any 2 element column vector in which the two elements have equal magnitude and opposite sign. Where k1is an arbitrary constant. We didnt have to use +1 and -1, we could have used any two quantities of equal magnitude and opposite sign. Going through the same procedure for the second eigenvalue: Again, the choice of +1 and -2 for the eigenvector was arbitrary; only their ratio is important. Scope of Project The scope of our project includes the following: Study and understand the image processing in varies method, mainly in MATLAB. Create a GUI (Graphical User Interface) MATLAB program with several functions. This requires identifying the steps which must be done to obtain some results. Further this project, the main areas considered are: Study about MATLAB, and its main functions to obtain and process images. Write or modify a program which can be used to acquire and treat images. Some information about the image file and its characteristics to understand the information it contains. Objective of the Project The objective of this project is actually to educate us and new comers to basic and fundamental technique in image processing through integrated image processing software. All fundamental algorithms of image processing will be exposed through this package [Ref] the program is in appendix -B. This package will also provided easy-to-learn mechanisms turn user-friendly and graphic-orientation environment. These operations include preprocessing, spatial filtering, image enhancement, feature detection, image compression and image restoration involves process which restores a degraded image to something close to the ideal. Generally, in computer vision, especially in MATLAB program (image understanding or scene analysis) involves technique from image processing, pattern recognition and artificial intelligent. Particularly, MATLAB program offers many features and are more multifaceted then any calculator. MATLAB toolbox is a tool for making mathematical calculations. Literature review (Related Work to our Project) Image processing is any form of signal processing for which the input is an image, such as photographs; the output of image processing can be either an image or a set of characteristics or parameters related to the image. Most image-processing techniques involve treating the image as a two-dimensional signal and applying standard signal-processing techniques to it. Image processing converting the image to another form by using direction in MATLAB/Toolboxes/Image Processing tables for example is image input/output, color operation, image enhancement/ analysis and another method. Image processing and computer vision practitioners tend concentrate on a particular area of specialization. People refer to their research interests as ââ¬Å"textureâ⬠, ââ¬Å"surface mappingâ⬠, ââ¬Å"video trackingâ⬠, and the like. Nevertheless, there is a strong need to appreciate the spectrum and hierarchy of processing levels. Image processing is the manipulation of the image by using a computer, with the objective to enhance or evaluate some aspect of an image which is not readily apparent in its original form. This is done through the development and implementation of processing means necessary to operate on the image. Processing image using a digital computer provides the greatest flexibility and power for general image processing application, since the programming of a computer can be changed easily which allows operation to be modified quickly. Interest in image processing technique dates back to early 1920s when digitized pictures of world news events were first transmitted by submarine cable between Newyork and London. However, application of digital image processing concepts did not become widespread until the middle 1960s, when third-generation digital computers began to offer the speed and storage capabilities required for practical implementation of image processing algorithms. Since then, this area has experienced vigorous growth and has been subjected of study and research in such fields as engineering, computer science, statistics, information science, physics, chemistry and medicine. The result of these efforts have established the value of image processing technique in of problem with application in diverse fields, including automated factory controlled, astronomy, meteorology, agriculture, medicine, art and military application. With the increasing availability of reasonably inexpensive hardware and some very importance application on the horizon, image technology is expected to continue its growth and to play an important role in the future. From the MATLAB software we have the Toolbox for image processing and Professional MATLAB. MATLAB is the interactive environment, scientists and engineers are able to analyze and develop algorithms with exceptional improvements n productivity and creativity. As a result of new algorithms with application-specific uses. The MathWorks offers a series of application toolboxes that contain set of MATLAB ofr the Linear algebra, high-speed computational kernel, extensive mathematical functionality, data analysis, 2-D and 3-D graphic rapid algorithm development, matrix based programming environment. In MATLAB Toolboxes professional version but priced at a lower rate for academic use. [Ref: 4] About Image Processing Tools of Matlab This set of Matlab tools consists of some functions that I have found useful for basic image processing and image analysis. When working with binary objects (4-connected foreground regions), we have often found it useful to measure features from the boundary stored as a list of coordinates. In other words, sometimes it is better to work with a polygon defining the foreground-background boundary than to work with a black and white image of the object. The boundary of an object in a binary (black and white) image can be stored as a list of pixel corner coordinates. The functiongetboundarymex [Ref 7] forms a list of these corner coordinates from a binary image containing an object. The toolbox containsselectobjectmexfor selecting regions by size. The commandimOut=selectobjectmex(imIn,n)will return an image,imOut, containing only thenth largest object (in terms of number of pixels) of the original imageimIn. This function is particularly useful if one wants to quickly threshold an image and then select the largest object without having to worry about smaller objects that are not of interest, e.g.imOut=selectobjectmex(im>0.5,1). [Ref:9] Also included is code for watershed segmentation by flooding from selected sources, fast calculation of object centroids etc. The usage of each the function is described by typinghelpfunctionat the MATLAB command prompt, wherefunctionis the name of the relevant function. The M-file scriptkftools shows an example of the usage of all of the functions in this toolbox . THEORY: There are various ways of implementing the image blurring technique: Linear blur horizontal or vertical averaging of a fixed number of pixels. Block blur averaging a small block of pixels by propagating a fixed sized window through the entire image. Gaussian blur convolution of the image with a two-dimensional Gaussian function. Linear blur: This is the simplest image blurring technique. It is done by taking the N-point average of a linear block of pixels (either horizontally or vertically). In our implementation, N will be 8, and we will be using the horizontal blur. An 1Ãâ"N-pixel window is placed at the top left of the image, and the average of the window is stored in the N/2th pixel of the window (in a new image to prevent overwriting). The window is then shifted across the row and the process is repeated. Once the window reaches the end of the row, it is moved to the next row and the process repeats itself. [Ref:11] The advantage of this method is that it is the simplest of the three. However, it also gives the poorest blurring quality. This is because by taking the horizontal average of each row, there will be averaging ââ¬Å"linesâ⬠in the output image. Also, parts of the picture where the detail does not span enough horizontal pixels will be lost after blurring. Finally, by the way this algorithm is designed, there will be an outer frame of the output image identical to the input image (i.e. the outer part of the image remains not blurred). [Ref:11] Block blur: This method is analogous to the linear blur, except that our window is now an NÃâ"N-pixel window. The procedure is the same as the linear blur, with the averaged pixel stored in the (N/2, N/2) position of the window. See block_blur.m for the MATLAB implementation of this algorithm. This method improves upon the quality of the linear blur in that averaging ââ¬Å"linesâ⬠are no longer visible in the output image. It also helps to retain details that span small horizontal distances in the original image better. However, it still does not overcome the problem of an outer frame in the output image that remains not blurred. [Ref:11] Gaussian blur: This is the best implementation of the image blurring technique, and is used in such commercial software as Adobe Photoshop. Unfortunately, it is also the most complex. It works by performing a two-dimensional convolution on the input image with a normalized two-dimensional MÃâ"M-pixel Gaussian function. Intuitively, each pixel of the output image is actually a Gaussian function centred at each point of the input image. Hence, the convolution will increase the size of the output image to N+M-1, so that after convolution we must crop the image to reduce it to its proper size. This method is the best of the three. It has no averaging ââ¬Å"linesâ⬠present, and it also blurs the entire image. Image Processing Toolbox (give reference to the Toolbox) Image Processing Toolbox provide us a comprehensive set of reference standard algorithms and graphical tools for image processing, analysis, visualization, and algorithm development. We can perform image enhancement, image deblurring, feature detection, noise reduction, image segmentation, spatial transformations, and image registration. Image Processing Toolbox supports a diverse set of image types, including high dynamic range, gigapixel resolution, ICC-compliant color, and tomographic images. Graphical tools let we explore an image, examine a region of pixels, adjust the contrast, create contours or histograms, and manipulate regions of interest (ROIs). With the toolbox algorithms we can restore degraded images, detect and measure features, analyze shapes and textures, and adjust the color balance of images. Key Features Image enhancement, filtering, and deblurring Image analysis, including segmentation, morphology, feature extraction, and measurement Spatial transformations and image registration Image transforms, including FFT, DCT, Radon, and fan-beam projection Workflows for processing, displaying, and navigating arbitrarily large images Modular interactive tools, including ROI selections, histograms, and distance measurements ICC color management Multidimensional image processing Image-sequence and video display DICOM import and export We have collected many image processing function which can make our project easy to execute , some of these function we used are as follows. Image Display and Exploration Immovie: Make movie from multiframe image Implay: Play movies, videos, or image sequences Imshow: Display image Imtool: Image Tool Montage: Display multiple image frames as rectangular montage Subimage: Display multiple images in single figure Warp: Display image as texture-mapped surface Image File I/O analyze75info: Read metadata from header file of Analyze 7.5 data set analyze75read: Read image data from image file of Analyze 7.5 data set Dicomanon: Anonymize DICOM file Dicomdict: Get or set active DICOM data dictionary Dicominfo: Read metadata from DICOM message Dicomlookup: Find attribute in DICOM data dictionary dicomread: Read DICOM image Dicomuid: Generate DICOM unique identifier Dicomwrite: Write images as DICOM files Hdrread: Read high dynamic range (HDR) image Hdrwrite: Write Radiance high dynamic range (HDR) image file Interfileinfo: Read metadata from Interfile file Interfileread: Read images in Interfile format Isrset: Check if file is R-Set Makehdr: Create high dynamic range image Nitfinfo: Read metadata from National Imagery Transmission Format (NITF) file Nitfread: Read image from NITF file Openrset: Open R-Set file Rsetwrite: Create reduced resolution data set from image file Image Types and Type Conversions Demosaic: Convert Bayer pattern encoded image to truecolor image gray2ind: Convert grayscale or binary image to indexed image Grayslice: Convert grayscale image to indexed image using multilevel thresholding Graythresh: Global image threshold using Otsus method im2bw: Convert image to binary image, based on threshold im2double: Convert image to double precision im2int16: Convert image to 16-bit signed integers im2java2d: Convert image to Java buffered image im2single: Convert image to single precision im2uint16: Convert image to 16-bit unsigned integers im2uint8: Convert image to 8-bit unsigned integers ind2gray: Convert indexed image to grayscale image ind2rgb: Convert indexed image to RGB image label2rgb: Convert label matrix into RGB image mat2gray: Convert matrix to grayscale image rgb2gray: Convert RGB image or colormap to grayscale We both studied the function properly and found few of them are very important for us to understand deeply. In order to segregate the most important function we select some of from them. System description: This project will use the MATLAB software package to develop algorithms which can automatically analyze these images for potential comets. MATLAB is a high-level programming environment very popular with scientists and engineers because of its powerful toolboxes and easy to use scripting language. Basic algorithms from the image processing toolbox will be utilized to find comets using the following general steps: Load original images into MATLAB Process images to isolate all bright spots and eliminate glare due to solar ejections Compare spots in subsequent images to find potential comet trajectories Analyze trajectories to ensure they meet known characteristics Highlight possible comets in original images and create output image Basically, MATLAB software has many functions/commands to apply in image processing. How to manipulate the program depending to us but must be practically know what item is MATLAB program will be used. Creativity in MATLAB can make the interesting result. Even, the complex data can be solved in MATLAB. Especially when the data involved is very complex. Here, we can create some image from converting data by using the some program in MATLAB, which just applied all procedure in the MATLAB program. MATLAB toolbox is a tool for making mathematical calculations. Image processing toolbox is user friendly programming language with feature more advanced. In the program also used the GUI (Graphical User Interface, move this definition to the first place where we used GUI) to create develop the program. Techniques and algorithm: Image and MATLAB involves the conversion of scene into a digital representation that can be processed by a digital computer. This can be performed by a sensor system specially designed to view a image and provide a digital representation of the image. When the images are installed in MATLAB, my picture for example, the color of that image is first analyzed. In the process include several functions of image processing technique. Processed Image is the image display after the process. GUI (Graphical User Interface) A graphical user interface (GUI) is a graphical display in one or more windows containing controls, called components that enable a user to perform interactive tasks. The user of the GUI does not have to create a script or type commands at the command line to accomplish the tasks. Unlike coding programs to accomplish tasks, the user of a GUI need not understand the details of how the tasks are performed. GUI components can include menus, toolbars, push buttons, radio buttons, list boxes, and sliders just to name a few. GUIs created using MATLAB tools can also perform any type of computation, read and write data files, communicate with other GUIs, and display data as tables or as plots Most GUIs wait for their user to manipulate a control, and then respond to each action in turn. Each control, and the GUI itself, has one or more user-written routines (executable MATLAB code) known as callbacks, named for the fact that they call back to MATLAB to ask it to do things. The execution of each callback is triggered by a particular user action such as pressing a screen button, clicking a mouse button, selecting a menu item, typing a string or a numeric value, or passing the cursor over a component. The GUI then responds to these events. We, as the creator of the GUI, provide callbacks which define what the components do to handle events. This kind of programming is often referred to as event-driven programming. In the example, a button click is one such event. In e vent-driven programming, callback execution is asynchronous, that is, it is triggered by events external to the software. In the case of MATLAB GUIs, most events are user interactions with the GUI, but the GUI can respond to other kinds of events as well, for example, the creation of a file or connecting a device to the computer. We can code callbacks in two distinct ways: As MATLAB functions, written in M and stored in M-files As strings containing MATLAB expressions or commands (such as c = sqrt(a*a + b*b);or print) Using functions stored in M-files as callbacks is preferable to using strings, as functions have access to arguments and are more powerful and flexible. MATLAB scripts (sequences of statements stored in M-files that do not define functions) cannot b e used as callbacks. Although we can provide a callback with certain data and make it do anything we want, we cannot control when callbacks will execute. That is, when wer GUI is being used, we have no control over the sequence of events that trigger particular callbacks or what other callbacks might still be running at those times. This distinguishes event-driven programming from
Sunday, January 19, 2020
The Film, A Respectable Trade :: Slavery Movies
The Film, A Respectable Trade In the film, A Respectable Trade, the account of slavery is different than usually seen. With an English backdrop, the cruelty of the trade was concealed. The slaves were not laboring in fields, but were being trained in house maintenance. On the streets there are no slaves, they are rerouted to the United States where they are traded. Although the slaves in the film are generally absent from the physical atmosphere, they are vital to the economic growth of Bristol, England. Josiah Cole exemplifies the plight of the struggling businessman. His dream of a better life is echoed in todayââ¬â¢s capitalist society. His constant drive is to move out of his fatherââ¬â¢s small home and into a bigger house in a better section of town. He is a shroud businessman who works hard to be innovative and find a new demand for his product. The economy of Bristol seems to revolve around one product, which is traded and sold. This description of Bristol doesnââ¬â¢t seem very different from many of todayââ¬â¢s capitalist societies. The one difference is the product that is being sold and traded. The humans that are being treated as cargo change the whole system from a thriving capitalist society to one of slavery. The town of Bristol becomes the economic center for slave trading. The slaves are seldom seen, but th e money gained from their trading is essential to the town. Cole is taking a business risk by bringing the slaves to Bristol; most of the slaves are traded for other goods by the time they reach the port. He is refining the product he trades in hope that it will fetch him a higher price. The more refined the slave is, the higher price he can charge. This simple business venture is made complicated by social standards because he is trading human beings. Watching this class process of slavery now, from a different societal standpoint, seems foreign. But to the slave traders, such a Josiah Cole, they ignored the fact that they were buying and selling human beings and avowed that they were involved in, A Respectable Trade. A Respectable Trade, portrays slaves in a unique light. Most scenes of slavery in film show slaves working in the fields of southern states in the 19th century.
Saturday, January 11, 2020
Biographical Approach to Kate Chopinââ¬â¢s ââ¬ÅThe Story of an Hourââ¬Â Essay
Literature is always said to be the echo of life. It reflects the time, the mindââ¬â¢s state, and authorââ¬â¢s life. Whenever one looks into any literature piece, they do not only read what is on the text but also try to understand the context that matters. These contexts include the life of the author, the era it was written, the social condition during the time it was set, and others. There are many ways in which a literary piece can be read and interpreted. The act of interpreting a literary text is called literary criticism. As said by Lamb (2003), literary criticism is an attempt to assess and comprehend the creative writing, the literature of an author. In this paper, the researcher uses a type of literary criticism to institute the meaning of the text. The researcher uses biographical approach to literary criticism. Eagleton (1996) describes this approach as a strategy of relating the authorââ¬â¢s life and thoughts to his/her works. This allows the reader to understand elements employed in the work, plus to relate works to authorial meaning and readers. MHS Composition Guide states that there are central biographical questions needed to reflect on in taking this approach. These questions are: â⬠¢ What biographical facts has the author used in the text? â⬠¢ What biographical facts has the author changed? â⬠¢ What insights do we acquire about the authorââ¬â¢s life by reading the text? â⬠¢ How do these facts and insights increase (or diminish) our understanding of the text? These questions wil used in the development of the body of this paper. In this paper, the researcher also attempts to give assessment in life to her short story, and to the main character of the short story ââ¬Å"The Story of an Hourâ⬠. Horward (2005) states that Katherine Oââ¬â¢Flaherty, also known as Kate Chopin, was one of the most renowned female writers of her time. Her universal themes are what made her extraordinary. She wrote several short stories including ââ¬Å"The Story of an Hourâ⬠, ââ¬Å"Euphraseâ⬠, ââ¬Å"Mrs. Mobryââ¬â¢s Reasonâ⬠, ââ¬Å"A Shameful Affairâ⬠and many others. Kate Chopin was raised into a home of women in St. Louis. This had been a very big influence to her writings, mainly on her views about feminism ââ¬â views about women. Chopin was later widowed at 32, and there she started writing for herself and for her six children. Chopin was an extensive reader that is why she was able to write stories of herself into creative ones. In the early 1970ââ¬â¢s, it was the resurrection of womenââ¬â¢s rights movements, and Kate Chopin was one of those contributors to the occurrence. She contributed a lot with her writings about women, daytime dramas, the feminine mystique, womenââ¬â¢s liberation, Mars vs. Venus, self-help and open marriages. Definitely, Kate Chopinââ¬â¢s early experiences had a great influence on her writings. One of her celebrated short stories is ââ¬Å"The Story of an Hourâ⬠and it is entirely famous not only in American Literature ââ¬â but also in the world. While reading the short story, the reader finds connection between the life of the author and the life of the main character of the short story. These connections are the similarities that the reader had taken into consideration: Chopin and Her Fatherââ¬â¢s Loss One of the main events in the story is a loss of someone very important, more particularly, Mrs. Mallardââ¬â¢s husbandââ¬â¢s loss. Josephine, Mrs. Mallardââ¬â¢s sister, had brought the sad message that there was a railroad disaster and of those listed as ââ¬Ëkilledââ¬â¢ was Brently Mallard, who was Mrs. Mallardââ¬â¢s husband. In Kateââ¬â¢s life, she had lost someone too, in a railroad accident in 1855 to a train accident. A Widow Mrs. Mallard is sooner or later, assumed to be a widow, but readers will soon find out that Mr. Mallard is alive. In Kateââ¬â¢s life, his father had widowed her mother. Both experienced having lost someone very special and as well as being widowed but definitely, their responses to the loss may entirely be different. In the end, before she would have learned about Brentlyââ¬â¢s return from the accident, Louise died of heart disease ââ¬â of joy that kills. This suggests that she had a monstrous joy, because it killed and consumed her to death. Perhaps, Chopin would just let Louise die instead of seeing Brently again, wherein she will be living like a prison again. Freedom for Women In ââ¬Å"The Story of An Hourâ⬠, Chopin has made no suggestion to the readers that Mrs. Mallard was sorry for her husbandââ¬â¢s loss. Instead, she has uttered ââ¬Ëover under her breathââ¬â¢: ââ¬Å"free, free, and free! â⬠, which suggests how happy Mrs. Mallard is to have lost her husband, because she has now freedom of herself. The joy she senses in possessing her freedom is something which consumes her. In Kateââ¬â¢s life, she was used to write about resurgence of womenââ¬â¢s rights. She experience a period when there was this declined and confinement of womenââ¬â¢s public needs like education, the vote, rights to her own property and her own children. Those events drove her to write this kind of feminist text instead of choosing other universal themes. Briefly, the title of this novel, ââ¬Å"The Story of an Hourâ⬠is a image of the feelings provoked by the main character, Louise Mallard. In connection to this, it can be confirmed that this novel is a reference to Kate Chopinââ¬â¢s life since most of the events in Louiseââ¬â¢s life are similar, or at least made a great influence to that of the story, ââ¬Å"The Story of an Hourâ⬠. The biographical approach made by the researcher accomplishes its purpose because an understanding able of the issues behind the book went through by tracing the history and life of Kate Chopin. Literature can bring us to the world of the author. Therefore, this research established that literature reflects the time, state of mind, and the life of the author through understanding the connection between Kate Chopin and Mrs. Mallard in the short story, ââ¬Å"The Story of an Hour. â⬠References: Original Text: References Chopin, K. (1976). The Awakening and Selected Stories of Kate Chopin. New York: Signet Classic. Eagleton, T. (1996). Biographical Approach. An introduction to Literary Theories (2 ed. ) University of Minnesota Press. Horward, A. ( 2005). A Woman Ahead of Her Time. Retrieved 28 April 2010 from: http://www. angelfire. com/nv/English243/Chopin. html Lamb, A. (2003). The topic: literary criticism. Retrieved 24 April 2010 from:
Friday, January 3, 2020
Thursday, December 26, 2019
The Rosie Project Book Club Discussion Questions
In some ways, by Graeme Simsion is a light, fun read for book clubs that need a break from heavy books. Simsion does, however, give groups plenty to discuss about Asperger syndrome, love, and relationships. Hopefully, these questions will help you have fun discussing the book. Spoiler Warning: These questions contain details from the end of the novel. Finish the book before reading on. Discussion Questions Dons character is both more aware of some dynamics (social, genetic, etc) and also very oblivious to some of these. Take, for instance, when he is giving the lecture on Asperger syndrome and he says, A woman at the rear of the room raised her hand. I was focused on the argument now and made a minor social error, which I quickly corrected.The fat womanââ¬â ââ¬â¹an overweight womanââ¬âat the back? (10)What are some other examples of this kind of behavior that you remember from the novel? How did this add humor?The reader is supposed to understand that Don has Asperger syndrome. If you know anyone with this diagnosis, did you think it was an accurate portrayal?There were several times in the novel when Don misses the social rules, but the case he makes for his side is very logical. One example is the Jacket incident (43) when he does not understand that jacket required means suit jacket and tries to argue all the ways his Gore-tex jacket is superior. Did you find this, and ot her times like it, amusing? What were some of your favorite scenes? Did hearing his perspective make you rethink social conventions? (Or consider using the standardized meal plan?)Why do you think Don is so drawn to Rosie? Why do you think Rosie is drawn to Don?At one point, Don says about one of the father candidates, Apparently he had been an oncologist but had not detected the cancer in himself, a not-uncommon scenario. Humans often fail to see what is close to them and obvious to others (82). How does this statement, about people failing to see what is in front of them, apply to the different characters in the novel?Why do you think Don was so successful at selling cocktails? Did you enjoy this scene?The novel mentions that Don struggled with depression in his early twenties and also talked about his strained relationship with his family. How did he cope with these issues? Are he and Rosie similar in the ways they deal with hard parts of their past?What did you think of Gene and Claudias relationship? Was Genes behavior humorous or frustrating to you?Did you think it was believable in the end that Don would be able to see from the Deans perspective, the perspective of the student who cheated, Claudias perspective, etc? Why or why not?Did you guess who Rosies real father was? Which parts of the Father Project did you like the most (the basement confrontation, the bathroom escape, the trip to the nursing home, etc)?Graeme Simsion published a sequel to The Rosie Project in December 2014ââ¬âThe Rosie Effect. Do you think the story could go on? Would you read the sequel?Rate The Rosie Project on a scale of 1 to 5.
Tuesday, December 17, 2019
The Importance of Ethical Integrity Essay - 1611 Words
What is ethical integrity and why is it important? This paper will address the viewpoint of ethical integrity and its outcome. Ethical Integrity is a favorably sensible method for doing what is right when it comes to people dealing with people. In todayââ¬â¢s society, ethical integrity has become a modern lifestyle. When a person has a strong moral character, they are said to be a person of integrity and to live a honest life is said to be the most important virtue a person can have. Consistency is a concept of ethical integrity and people should act according to their moral principles. In other words, people should do what they say. For example, if a company owner speaks about the need to improve productivity in the workplace, he/she wouldâ⬠¦show more contentâ⬠¦In general, in order for a corporation to maintain long-term success, ethical integrity must include the following standards from the entire staff: being trustful, meeting obligations, and being respectful. For instance, if an employee is hurt on the job, it is the employerââ¬â¢s ethical duty or obligation to do the right thing by offering compensation for the employeeââ¬â¢s injuries, since the incident occurred in the workplace. Another example why ethical integrity is important in the workplace is when the headship of a business is dishonest and has no respect for their employees; as a result, the employees will show lack of integrity in return and eventually, poor performance will be expressed and the business reputation will be damaged. Consequently, respect would not be attained between the proprietor and staff members because of lack of integrity. Integrity in the workplace should influence employees to imitate those in authority with ethical standards to ensure positive conduct. ââ¬Å"While business integrity is parallel to business ethics, honesty in a business will promote a truthful reputation, which will eventually gain respectâ⬠(Bigelow, 2005, para. 1). The need to have ethical integrity in the workplace is important to the stability and enduring success of any company because when decent decisions are made, ethics come into play. Accordingly, most corporations have a code of ethics in placeShow MoreRelatedEthical And Ethical Aspects Of Business Ethics1350 Words à |à 6 Pagescompany may have high standard to define for better working environment. -guides the conduct of all stakeholders for the execution of their responsibilities. Well-formed ethical principles provide benefits to an organization. but besides benefits ethical wrongdoings harms business management in many ways. Some of These ethical violations can be listed as theft, misreporting of working time, sexual harassment, misuse of power and authority, conveying incorrect information to customers or employeesRead MoreWhat Is Business Ethics?1294 Words à |à 6 Pagesby the set of standards that are defined. Companies around the world observe these ethical principles strictly; ensuring that all of their employees follow the rules. When an employee is hired he has moral as well legal obligations. The employee is expected to work as per the requirements in his contract. He should treat others with legitimacy and dignity. One should always have a thought process of making ethical judgments, for example compare the views and experience of the observer with what isRead MoreEthics And Ethics Of Business Ethics1304 Words à |à 6 Pagesdrastically and are an integral part of building an individuals as well as a businessââ¬â¢s reputation. Business Ethics So, what exactly is business ethics? ââ¬Å"Business ethics is a form of applied ethics or professional ethics that examines ethical principles and moral or ethical problems that arise in a business environment. It applies to all aspects of business conduct and is relevant to the conduct of individuals and entire organizations.â⬠ââ¬â Wikipedia. In simpler words, business ethics refers to the moralRead MoreBusiness Ethics, Corporate Social Responsibility, Integrity, And Integrity1318 Words à |à 6 Pagessociety. It also explains the concept of integrity and its importance is our career. Keywords: business ethics, university ethics, corporate social responsibility, integrity ESSAY ON BUSSINESS ETHICS Letââ¬â¢s kick off this topic with a quote from Robert W. Lane, the Chairman and CEO of Deere Company, ââ¬Å"If you donââ¬â¢t have honesty and integrity, you wonââ¬â¢t be able to develop effective relationships with any of your stakeholders.â⬠This is the basis of an ethical approach to relationships within businessRead MoreEthical and Socially Responsive Business1082 Words à |à 5 PagesEthical and Socially Responsive Business Ethics and social responsibility are important areas within Chipotle Mexican Grillââ¬â¢s business. Both areas have an interactive relationship that plays a role in building profitable businesses as well as a well-rounded community. Ethics refer to sets of beliefs about right and wrong; and business ethics involve the application of these issues in the workplace. The universal ethical standards, which involve trustworthiness, respect, responsibility, fairnessRead MoreImportance of Ethics in Accounting1065 Words à |à 5 PagesRunning head: IMPORTANCE OF ETHICS IN ACCOUNTING Importance of Ethics in Accounting Everest University Importance of Ethics in Accounting Accounting fraud is common but is not as trivial as the common cold; a typical organization loses annual revenues of nearly 5 percent to fraud. In addition, almost one-quarter of reported fraud is exceeding $1 million dollars. The accounting industry is constantly growing and changing. Consequently, difficult decisions have to be made every day. Read MoreThe Moral Ethical Guidelines Of A Shot Manipulation And The Dependence On A Machine1092 Words à |à 5 Pagesjournalistsââ¬â¢ integrity to provide accurate news to the public. He also indicates the existence of two moral dilemmas in photojournalism profession: post- shoot manipulation and the dependence on a machine to make a decision rather than a human being, as well as the ethical problems that come with the two moral dilemmas such as inconsistency, lack of integrity, and inaccuracy. He also presents two important questions to discuss. The first question at stake is what are the proper ethical guidelines ofRead MoreBusines s Ethics : Ethical And Ethical Issues1360 Words à |à 6 Pagesethics can be defined as the set of moral values and codes or standards of conduct in an organization. According to Wikipedia ââ¬â ââ¬Å"Business ethics (also corporate ethics) is a form of applied ethics or professional ethics that examines ethical principles and moral or ethical problems that arise in a business environment. It applies to all aspects of business conduct and is relevant to the conduct of individuals and entire organizations.â⬠The particulars and specifics of the codes and standards mentionedRead MoreThe Importance Of Management And The Success Of A Company1192 Words à |à 5 PagesEvaluating the importance of management and integrity as essential elements to the success of a company Introduction When it comes to the coordination of activities of an or organization or a company in order to achieve its desired objectives, the importance of management should never be underestimated, management itself is a large and complex topic with all organizations having its goals and objective in which its management process will need to attain desired success for the company, using GlobalRead MoreSocial Work Ethics And Personal Ethics1489 Words à |à 6 Pagesmay have different beliefs. Comparing my values to those of the social work code of ethics will show the converging and diverging between the two with a focus on three of the social work code of ethics: dignity and worth of the individual, integrity, and importance of human relationships. My personal values diverge from the social work values and codes of ethics in many different ways, but there are also times where they both converge with each other. Although they may be different in some ways, my
Monday, December 9, 2019
Reporting Of Non Financial Information â⬠Myassignmenthelp.Com
Question: Discuss About The Reporting Of Non-Financial Information? Answer: Introduction With the emergence of knowledge-based economy, the companies have increased their disclosure of both financial and non-financial information. The primary objective of this has been seen in form of informing the investors on the uncertainty of future earnings, amount and timing. In the recent times, the companies are increasingly publishing information associated to environmental and sustainable aspects of their operations. The aforementioned disclosures usually take place with corporate social responsibility report and sustainability reports. Certain companies may incorporate disclosures of non-financial information to improve their credibility and acceptance of the key market components. This in turn helps the companies in undertaking successful business decisions. With the increasing concern for achieving a top position in sustainability index several companies are considering to improve the way in which non-financial information is being reported. The report is intended to identif y and discuss the nature of the non-financial information and economic consequences. It further aims to present how the non-financial information should be reported. The latter part of the report shows the integration of both the concepts and the consequences of non-financial information reporting (Global Reporting Initiative, 2013). Nature of non-financial information and economic consequences The main form of non-financial reporting is done in two ways namely sustainability reporting and integrated reporting. Sustainability reporting is defined as the process of disclosing and gathering of non-financial information of a company associated to ethical matters, environmental performance, social values and defining measurements. It acts as the indicator of sustainability goal for the companys strategy (Melis et al., 2015). The integrated reporting on the other hand acts as a process of combining several financial and sustainability reports into a single report which explained the companys ability to create and sustain value. The integrated reporting of the company may be supported by the integrated reporting framework. The integrated reporting consists of elements from both financial statements and sustainability reporting. The use of non-financial information has resulted in new forms of analysis known as extra financial analysis. Hence, the performance of enterprise is no longer conditioned only by the financial resources and controlled entities, but it also depends on a complex set of intangible resources created by previous activities (Skouloudis et al., 2014). The balanced scorecard is often identified as the first focus towards disclosure of non-financial information. The economic consequences are seen as the debt market impact and capital market. Several researchers have identified the economic consequences as return on assets, return on equity, return on sales, debt equity ratio, net sales, total assets, equity, debt asset ratio and profit incurred by the company. Some of the impacts of the economic consequences have been seen in terms of changes associated to net sales, total assets and equity of the company (Martani et al., 2014). Reporting of non-financial information The reporting of non-financial information as sustainability reporting may be done as per the Global Reporting Initiatives methodology. This is identified as the best guideline report sustainability practice of the company. The main guidelines for reporting of non-financial information are suggested by Organization for Economic Co-operation and Development (OECD), Global Reporting Initiative (GRI), ISO 26000, ILO Core Conventions and European Commission Directive (Cheng et al., 2013). The OECD guidelines are addressed by the government to the multinational enterprises and some of the member countries under these guidelines include Australia, Austria, Belgium, Canada, Germany, U.S., UK and among many others. This particular guideline is able to ensure that enterprises report their sustainability matters to spend on the mutual confidence among the society in which they operate. This further enhances to improve the foreign investment climate and contributions made in terms of sustainable development by the various types of multinational enterprises. The latest edition of this guideline for the works for areas associated to human rights, environment, combating bribery, consumer interests, competition and taxation (Mohamad et al., 2014). The GRI is identified as a leading body by providing organisations with the most suitable sustainability reporting guidelines. It is seen to promote the sustainability reporting so that the organisations are able to contribute in a more sustainable manner. The sustainability framework under the GRI guidelines shows the organisations how they can disclose the sustainability performance through technical protocol and sector supplements (Global Reporting Initiative, 2013). It is an identified that there are number of guidelines which are associated to specific non-financial reporting brought together by UN compact- the United Nations global compact. This is identified as the strategy policy initiative for the businesses which are seen to be committed for aligning their operations with the strategies associated to anticorruption, environment, human rights and labour (Martnez-Ferrero et al., 2015). The ISO 26000 provides the guidance for social responsibility. It is seen as a non-mandatory standard which aims at the different types of organisations to encourage implementation of social responsibility worldwide. This particular standard shows how business and organisations can operate in a more socially responsible manner. This is has been considered in terms of ethical and transparent way of contributing to the welfare of the society. The ISO 26000 guideline is associated to provide the relevant guidance irrespective of their location and size. Under the guideline several concepts, definition and terms are provided associated to social responsibility. It further shows the reporting standards based on background, trends and characteristics of the social responsibility. The next important aspect of these guidelines shows communicating commitments, performance and other information associated to corporate social responsibility. It also encourages the companies to include core subj ects and issues associated to social responsibility (Lawrence, 2013). The ILO core conventions follow eight conventions for reporting of adherence to the fundamental rights of human beings at work. Some of the conventions include forced labour, freedom of association and protection of rights to organise, abolition of forced labour, equal remuneration and a minimum age Convention (Lawrence, 2013). The European commission directive is aimed to enhance the transparency among the large companies on reporting of matters associated to environment and social issues. The main objective of this reporting is identified to improve the transparency and performance based on social matters, environment and long-term economic growth and employment in the country (Tang, 2014). Consequences of non-financial information reporting Some of the main benefits of the non-financial reporting have been seen in terms of attracting, retaining and maintaining satisfaction in the workplace. It has been further identified to improve the reputation of business, differentiated from the competitors and provide new business opportunities. Some of the benefits to the customers of non-financial information reporting have been identified in terms of strengthening customer retention, enhancing relationship with stakeholders and suppliers (Bertomeu Magee, 2015). Based on the propositions made by European commission the disclosure of non-financial information for large companies has a significant amount of impact on the investors. The most important source of non-financial information for the investors has been identified in terms of CSR/ sustainability reports. The real effect of non-financial disclosure is able to determine the concern for environmental impacts in form of carbon footprints, sustainability issues and social matters. This in turn influences the investors to access a company in a holistic way rather than just considering the financial growth. The corporate social responsibility is identified as a precondition for the issue which is being taken into consideration. Several other approaches has been linked with cost of capital, tax rates, operating margin, duration of cells and growth of sales and the results have depicted that the disclosure of non-financial aspects improves the aforementioned areas of the company in the long te rm. Several other researchers have able to identify that there is a strong relationship between financial indicator index and human resources, environmental policies and social responsibility (Mohamad et al., 2014). The researchers are further able to depict a positive relationship between production subcategory and financial indicator index. Some of the other categories of information associated with the financial indicator index are seen in terms of human resource, board of directors, competition and marketing strategies. The overall studies conducted by the researchers have been able to highlight a remarkably positive relationship between the financial and the non-financial information disclosures. The research has been further able to identify that the companies were having a better financial indicator also had a better disclosure for non-financial disclosures (Milost, 2013) Conclusion The discussions of the study have been able to successfully identify the economic consequences on the non-financial information published by the companies. The several aspects of the research have further included the disclosure standards of various different countries and the standard guidelines. The study has identified the two important categories of non-financial information as integrated report and sustainability report. It is further identified the main nature of economic consequences are debt market impact and capital market. Some of the main guidelines for the reporting standards associated to non-financial disclosures have been covered by mentioning OECD, GRI), ISO 26000, ILO Core Conventions and European Commission Directive. The main benefits of the non-financial reporting have been seen in terms of attracting, retaining and maintaining satisfaction in the workplace. The researchers are further able to depict a positive relationship between production subcategory and finan cial indicator index. Some of the other categories of information associated with the financial indicator index are seen in terms of human resource, board of directors, competition and marketing strategies. The overall studies conducted by the researchers have been able to highlight a remarkably positive relationship between the economic consequences and the non-financial information disclosures. Reference list Bertomeu, J., Magee, R. P. (2015). Mandatory disclosure and asymmetry in financial reporting. Journal of Accounting and Economics, 59(23), 284299. https://doi.org/10.1016/j.jacceco.2014.08.007 Cheng, M., Dhaliwal, D., Zhang, Y. (2013). Does investment efficiency improve after the disclosure of material weaknesses in internal control over financial reporting? Journal of Accounting and Economics, 56(1), 118. https://doi.org/10.1016/j.jacceco.2013.03.001 Global Reporting Initiative. (2013). A smart EU policy approach to non-financial information disclosure. GRI Report, 19. Retrieved from https://www.globalreporting.org/resourcelibrary/GRI-non-paper-Report-or-Explain.pdf Lawrence, A. (2013). Individual investors and financial disclosure. Journal of Accounting and Economics, 56(1), 130147. https://doi.org/10.1016/j.jacceco.2013.05.001 Martani, D. W. I., Nastiti, D., Wicaksono, P. T. (2014). Disclosure of non-financial information about public services on the official website of local governments in Indonesia. Journal of Theoretical and Applied Information Technology, 66(2), 500512. Martnez-Ferrero, J., Garcia-Sanchez, I. M., Cuadrado-Ballesteros, B. (2015). Effect of financial reporting quality on sustainability information disclosure. Corporate Social Responsibility and Environmental Management, 22(1), 4564. https://doi.org/10.1002/csr.1330 Melis, A., Gaia, S., Carta, S. (2015). Directors remuneration: A comparison of Italian and UK non-financial listed firms disclosure. British Accounting Review, 47(1), 6684. https://doi.org/10.1016/j.bar.2014.08.004 Milost, F. (2013). Information Power of Non-Financial Performance Measures. International Journal of Business Management Economic Research, 4(6), 823828. Retrieved from https://search.ebscohost.com.ezproxy.liv.ac.uk/login.aspx?direct=truedb=bthAN=92986906site=eds-livescope=site Mohamad, Z., Mohamed, S., Ismail, D., Ibrahim, T. C. (2014). Does quality of non-financial information disclosure influence firms profitability in Malaysia? International Journal of Academic Research in Accounting Finance and Management Sciences, 4(4), 297306. https://doi.org/10.6007/IJARAFMS/v4-i4/1360 Skouloudis, A., Jones, N., Malesios, C., Evangelinos, K. (2014). Trends and determinants of corporate non-financial disclosure in Greece. Journal of Cleaner Production, 68, 174188. https://doi.org/10.1016/j.jclepro.2013.12.048 Tang, Y. (2014). Information disclosure and price discovery. Journal of Financial Markets, 19(1), 3961. https://doi.org/10.1016/j.finmar.2014.03.002
Subscribe to:
Posts (Atom)